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