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