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