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