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