C:
char c = '\uA0C4';
printf("%c\n", c); // Output: ꃄ
JavaScript:
const char = '\uA0C4';
console.log(char); // Output: ꃄ
Java:
char c = '\uA0C4';
System.out.println(c); // Output: ꃄ
JSON:
{"text": "\uA0C4"} // Value: ꃄ
Python:
char = '\uA0C4'
print(char) # Output: ꃄ
Perl:
my $char = "\x{A0C4}";
print $char; # Output: ꃄ
PHP:
$char = "\x{A0C4}";
echo $char; // Output: ꃄ
Ruby:
char = "\u{A0C4}"
puts char # Output: ꃄ
Rust:
let c = '\u{A0C4}';
println!("{}", c); // Output: ꃄ
Go:
char := '\uA0C4'
fmt.Printf("%c\n", char) // Output: ꃄ
CSS:
/* CSS content property */
.element::before {
content: "\00A0C4"; /* 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%84
MD5:
1394dac8b6386169d420ac851897aa24
SHA1:
90af9fb917d7251870f6ab745c052d521614740c
Base64:
6oOE