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