Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0xefbbbf (0.03 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: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Mar 13 08:18:01 UTC 2025
    - 320.1K bytes
    - Viewed (1)
  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 Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 10.1K bytes
    - Viewed (0)
Back to top