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