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