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