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