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