C:
char c = '\u1821';
printf("%c\n", c); // Output: ᠡ
JavaScript:
const char = '\u1821';
console.log(char); // Output: ᠡ
Java:
char c = '\u1821';
System.out.println(c); // Output: ᠡ
JSON:
{"text": "\u1821"} // Value: ᠡ
Python:
char = '\u1821'
print(char) # Output: ᠡ
Perl:
my $char = "\x{1821}";
print $char; # Output: ᠡ
PHP:
$char = "\x{1821}";
echo $char; // Output: ᠡ
Ruby:
char = "\u{1821}"
puts char # Output: ᠡ
Rust:
let c = '\u{1821}';
println!("{}", c); // Output: ᠡ
Go:
char := '\u1821'
fmt.Printf("%c\n", char) // Output: ᠡ
CSS:
/* CSS content property */
.element::before {
content: "\001821"; /* 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%A1
MD5:
77925d89f5fc31f9c3a640ac97b6cacf
SHA1:
adb16cf281470525a9ba593f2c20c806382281e4
Base64:
4aCh