C:
char c = '\uABC4';
printf("%c\n", c); // Output: ꯄ
JavaScript:
const char = '\uABC4';
console.log(char); // Output: ꯄ
Java:
char c = '\uABC4';
System.out.println(c); // Output: ꯄ
JSON:
{"text": "\uABC4"} // Value: ꯄ
Python:
char = '\uABC4'
print(char) # Output: ꯄ
Perl:
my $char = "\x{ABC4}";
print $char; # Output: ꯄ
PHP:
$char = "\x{ABC4}";
echo $char; // Output: ꯄ
Ruby:
char = "\u{ABC4}"
puts char # Output: ꯄ
Rust:
let c = '\u{ABC4}';
println!("{}", c); // Output: ꯄ
Go:
char := '\uABC4'
fmt.Printf("%c\n", char) // Output: ꯄ
CSS:
/* CSS content property */
.element::before {
content: "\00ABC4"; /* 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%84
MD5:
9d067b1ef51b8cba59d3f5207528f7c4
SHA1:
f861af911e94d78f62e68d7498e96cdb11399e5c
Base64:
6q+E