C:
char c = '\u1834';
printf("%c\n", c); // Output: ᠴ
JavaScript:
const char = '\u1834';
console.log(char); // Output: ᠴ
Java:
char c = '\u1834';
System.out.println(c); // Output: ᠴ
JSON:
{"text": "\u1834"} // Value: ᠴ
Python:
char = '\u1834'
print(char) # Output: ᠴ
Perl:
my $char = "\x{1834}";
print $char; # Output: ᠴ
PHP:
$char = "\x{1834}";
echo $char; // Output: ᠴ
Ruby:
char = "\u{1834}"
puts char # Output: ᠴ
Rust:
let c = '\u{1834}';
println!("{}", c); // Output: ᠴ
Go:
char := '\u1834'
fmt.Printf("%c\n", char) // Output: ᠴ
CSS:
/* CSS content property */
.element::before {
content: "\001834"; /* 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%B4
MD5:
b6d3439ab8530ae89b7b39836b6e5c60
SHA1:
cae97729388afedd82e19ebe2a2e8fdc22bb01c9
Base64:
4aC0