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