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