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