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