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