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