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