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