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