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