Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0xefbbbf (0.04 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

              <match value="X-Mailer:" type="string" offset="0"/>
              <match value="X-Originating-IP:" type="stringignorecase" offset="0"/>
              <match value="0xefbbbf" type="string" offset="0">
                <match value="Content-ID:" type="stringignorecase" offset="3"/>
                <match value="Content-Location:" type="stringignorecase" offset="3"/>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Oct 16 07:46:32 UTC 2025
    - 320.2K bytes
    - Viewed (5)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilCommon.kt

    import okio.Options
    import okio.Path
    import okio.use
    
    @JvmField
    internal val EMPTY_BYTE_ARRAY: ByteArray = ByteArray(0)
    
    /** Byte order marks. */
    internal val UNICODE_BOMS =
      Options.of(
        // UTF-8.
        "efbbbf".decodeHex(),
        // UTF-16BE.
        "feff".decodeHex(),
        // UTF-32LE.
        "fffe0000".decodeHex(),
        // UTF-16LE.
        "fffe".decodeHex(),
        // UTF-32BE.
        "0000feff".decodeHex(),
      )
    
    /**
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 10.1K bytes
    - Viewed (0)
Back to top