C:
char c = '\u1810';
printf("%c\n", c); // Output: ᠐
JavaScript:
const char = '\u1810';
console.log(char); // Output: ᠐
Java:
char c = '\u1810';
System.out.println(c); // Output: ᠐
JSON:
{"text": "\u1810"} // Value: ᠐
Python:
char = '\u1810'
print(char) # Output: ᠐
Perl:
my $char = "\x{1810}";
print $char; # Output: ᠐
PHP:
$char = "\x{1810}";
echo $char; // Output: ᠐
Ruby:
char = "\u{1810}"
puts char # Output: ᠐
Rust:
let c = '\u{1810}';
println!("{}", c); // Output: ᠐
Go:
char := '\u1810'
fmt.Printf("%c\n", char) // Output: ᠐
CSS:
/* CSS content property */
.element::before {
content: "\001810"; /* 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%A0%90
MD5:
2af3068c57ee96705d6d62151417a48b
SHA1:
c8f992f9afe5828bf494e9bb61c0c1f90e160604
Base64:
4aCQ