C:
char c = '\u1B67';
printf("%c\n", c); // Output: ᭧
JavaScript:
const char = '\u1B67';
console.log(char); // Output: ᭧
Java:
char c = '\u1B67';
System.out.println(c); // Output: ᭧
JSON:
{"text": "\u1B67"} // Value: ᭧
Python:
char = '\u1B67'
print(char) # Output: ᭧
Perl:
my $char = "\x{1B67}";
print $char; # Output: ᭧
PHP:
$char = "\x{1B67}";
echo $char; // Output: ᭧
Ruby:
char = "\u{1B67}"
puts char # Output: ᭧
Rust:
let c = '\u{1B67}';
println!("{}", c); // Output: ᭧
Go:
char := '\u1B67'
fmt.Printf("%c\n", char) // Output: ᭧
CSS:
/* CSS content property */
.element::before {
content: "\001B67"; /* 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=%E1%AD%A7
MD5:
a1780ad451f6d3d7208a0a9824d9af37
SHA1:
9d75e7d652d6be6a4e143b807bd090e95ac0239f
Base64:
4a2n