C:
char c = '\u1553';
printf("%c\n", c); // Output: ᕓ
JavaScript:
const char = '\u1553';
console.log(char); // Output: ᕓ
Java:
char c = '\u1553';
System.out.println(c); // Output: ᕓ
JSON:
{"text": "\u1553"} // Value: ᕓ
Python:
char = '\u1553'
print(char) # Output: ᕓ
Perl:
my $char = "\x{1553}";
print $char; # Output: ᕓ
PHP:
$char = "\x{1553}";
echo $char; // Output: ᕓ
Ruby:
char = "\u{1553}"
puts char # Output: ᕓ
Rust:
let c = '\u{1553}';
println!("{}", c); // Output: ᕓ
Go:
char := '\u1553'
fmt.Printf("%c\n", char) // Output: ᕓ
CSS:
/* CSS content property */
.element::before {
content: "\001553"; /* 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%93
MD5:
def3db15500c3f48aa462184351b6877
SHA1:
b74b51b91504b27681bc47bdd08f1d98ed3a744b
Base64:
4ZWT