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