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