C:
char c = '\u1890';
printf("%c\n", c); // Output: ᢐ
JavaScript:
const char = '\u1890';
console.log(char); // Output: ᢐ
Java:
char c = '\u1890';
System.out.println(c); // Output: ᢐ
JSON:
{"text": "\u1890"} // Value: ᢐ
Python:
char = '\u1890'
print(char) # Output: ᢐ
Perl:
my $char = "\x{1890}";
print $char; # Output: ᢐ
PHP:
$char = "\x{1890}";
echo $char; // Output: ᢐ
Ruby:
char = "\u{1890}"
puts char # Output: ᢐ
Rust:
let c = '\u{1890}';
println!("{}", c); // Output: ᢐ
Go:
char := '\u1890'
fmt.Printf("%c\n", char) // Output: ᢐ
CSS:
/* CSS content property */
.element::before {
content: "\001890"; /* 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%A2%90
MD5:
2234ebfbb39d46538ca4178fd3483b74
SHA1:
414bdbc1c4ec9d03e6ad958f2396577355098495
Base64:
4aKQ