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