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