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