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