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