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