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