C:
char c = '\u1552';
printf("%c\n", c); // Output: ᕒ
JavaScript:
const char = '\u1552';
console.log(char); // Output: ᕒ
Java:
char c = '\u1552';
System.out.println(c); // Output: ᕒ
JSON:
{"text": "\u1552"} // Value: ᕒ
Python:
char = '\u1552'
print(char) # Output: ᕒ
Perl:
my $char = "\x{1552}";
print $char; # Output: ᕒ
PHP:
$char = "\x{1552}";
echo $char; // Output: ᕒ
Ruby:
char = "\u{1552}"
puts char # Output: ᕒ
Rust:
let c = '\u{1552}';
println!("{}", c); // Output: ᕒ
Go:
char := '\u1552'
fmt.Printf("%c\n", char) // Output: ᕒ
CSS:
/* CSS content property */
.element::before {
content: "\001552"; /* 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=%E1%95%92
MD5:
91f8eb0e74c29ce0ccedf522c134f2fa
SHA1:
c20ac85d00228db55e0f0716800893a5bd8b244c
Base64:
4ZWS