C:
char c = '\uABCA';
printf("%c\n", c); // Output: ꯊ
JavaScript:
const char = '\uABCA';
console.log(char); // Output: ꯊ
Java:
char c = '\uABCA';
System.out.println(c); // Output: ꯊ
JSON:
{"text": "\uABCA"} // Value: ꯊ
Python:
char = '\uABCA'
print(char) # Output: ꯊ
Perl:
my $char = "\x{ABCA}";
print $char; # Output: ꯊ
PHP:
$char = "\x{ABCA}";
echo $char; // Output: ꯊ
Ruby:
char = "\u{ABCA}"
puts char # Output: ꯊ
Rust:
let c = '\u{ABCA}';
println!("{}", c); // Output: ꯊ
Go:
char := '\uABCA'
fmt.Printf("%c\n", char) // Output: ꯊ
CSS:
/* CSS content property */
.element::before {
content: "\00ABCA"; /* Display: ꯊ */
}
HTML Decimal:
<p>HTML decimal: ꯊ</p> <!-- Display: ꯊ -->
HTML Hexadecimal:
<p>HTML hex: ꯊ</p> <!-- Display: ꯊ -->
URL Encoding:
// ꯊ URL encoding
https://unicodefinder.com/search.php?query=%EA%AF%8A
MD5:
60871a82f31fb22459cb67e0a62bd6b7
SHA1:
b0b25f2b8255fe3216396568ae2cfe71afa28e6f
Base64:
6q+K