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