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