Rebol Programming/utf?
USAGE:
editUTF? data
DESCRIPTION:
editReturns the UTF encoding from the BOM (byte order marker): + for BE; - for LE.
UTF? is a function value.
ARGUMENTS
edit- data -- (Type: binary)
SOURCE CODE
editutf?: func [ {Returns the UTF encoding from the BOM (byte order marker): + for BE; - for LE.} data [binary!] ][ parse/all/case data [ #{EFBBBF} (return 8) | #{0000FEFF} (return 32) | #{FFFE0000} (return -32) | #{FEFF} (return 16) | #{FFFE} (return -16) | (return 0) ] ]