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