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