C:
char c = '\u1813';
printf("%c\n", c); // Output: ᠓
JavaScript:
const char = '\u1813';
console.log(char); // Output: ᠓
Java:
char c = '\u1813';
System.out.println(c); // Output: ᠓
JSON:
{"text": "\u1813"} // Value: ᠓
Python:
char = '\u1813'
print(char) # Output: ᠓
Perl:
my $char = "\x{1813}";
print $char; # Output: ᠓
PHP:
$char = "\x{1813}";
echo $char; // Output: ᠓
Ruby:
char = "\u{1813}"
puts char # Output: ᠓
Rust:
let c = '\u{1813}';
println!("{}", c); // Output: ᠓
Go:
char := '\u1813'
fmt.Printf("%c\n", char) // Output: ᠓
CSS:
/* CSS content property */
.element::before {
content: "\001813"; /* 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%93
MD5:
3e67d1e367c8926feb84027e4fb05b83
SHA1:
cd4b40f936afa2d9d6df1ea1d2e1ac06676b774e
Base64:
4aCT