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