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