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