C:
char c = '\u1822';
printf("%c\n", c); // Output: ᠢ
JavaScript:
const char = '\u1822';
console.log(char); // Output: ᠢ
Java:
char c = '\u1822';
System.out.println(c); // Output: ᠢ
JSON:
{"text": "\u1822"} // Value: ᠢ
Python:
char = '\u1822'
print(char) # Output: ᠢ
Perl:
my $char = "\x{1822}";
print $char; # Output: ᠢ
PHP:
$char = "\x{1822}";
echo $char; // Output: ᠢ
Ruby:
char = "\u{1822}"
puts char # Output: ᠢ
Rust:
let c = '\u{1822}';
println!("{}", c); // Output: ᠢ
Go:
char := '\u1822'
fmt.Printf("%c\n", char) // Output: ᠢ
CSS:
/* CSS content property */
.element::before {
content: "\001822"; /* 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%A2
MD5:
de2cf5e94017bd9dbeeea6a77ff43c80
SHA1:
68ac032bffa0ddf423f13c0544ee4540968cf4aa
Base64:
4aCi