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