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