Name | BinaryTag |
Prefix | binary@ |
Base Type | ElementTag |
Identity Format | The identity format for BinaryTag is a hex encoding of the byte set, in order.
Each byte is encoding as an individual big-endian hexadecimal pair, like "FF" for byte=255, "00" for byte=0, "0F" for 15, "F0" for 240, ... etc. |
Description | BinaryTags represent raw binary data in Denizen.
This is useful in particular for file or network interop. Generally you should only be interacting with BinaryTag if you have a specific reason to, otherwise there are usually more appropriate types to use. Most content you'll come across will be encoded in a text-based format, not a binary one. |
Source | https://github.com/DenizenScript/Denizen-Core/blob/master/src/main/java/com/denizenscript/denizencore/objects/core/BinaryTag.java#L26 |