C:
char c = '\u1610';
printf("%c\n", c); // Output: ᘐ
JavaScript:
const char = '\u1610';
console.log(char); // Output: ᘐ
Java:
char c = '\u1610';
System.out.println(c); // Output: ᘐ
JSON:
{"text": "\u1610"} // Value: ᘐ
Python:
char = '\u1610'
print(char) # Output: ᘐ
Perl:
my $char = "\x{1610}";
print $char; # Output: ᘐ
PHP:
$char = "\x{1610}";
echo $char; // Output: ᘐ
Ruby:
char = "\u{1610}"
puts char # Output: ᘐ
Rust:
let c = '\u{1610}';
println!("{}", c); // Output: ᘐ
Go:
char := '\u1610'
fmt.Printf("%c\n", char) // Output: ᘐ
CSS:
/* CSS content property */
.element::before {
content: "\001610"; /* 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%98%90
MD5:
da9b334a55e8cc8307a7e4347a3c342f
SHA1:
628d64e7720de8d809165a3ec39e1cd0256e5e51
Base64:
4ZiQ