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