C:
char c = '\u1803';
printf("%c\n", c); // Output: ᠃
JavaScript:
const char = '\u1803';
console.log(char); // Output: ᠃
Java:
char c = '\u1803';
System.out.println(c); // Output: ᠃
JSON:
{"text": "\u1803"} // Value: ᠃
Python:
char = '\u1803'
print(char) # Output: ᠃
Perl:
my $char = "\x{1803}";
print $char; # Output: ᠃
PHP:
$char = "\x{1803}";
echo $char; // Output: ᠃
Ruby:
char = "\u{1803}"
puts char # Output: ᠃
Rust:
let c = '\u{1803}';
println!("{}", c); // Output: ᠃
Go:
char := '\u1803'
fmt.Printf("%c\n", char) // Output: ᠃
CSS:
/* CSS content property */
.element::before {
content: "\001803"; /* 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%83
MD5:
4bf7eaa56fca39ad76d09a40d6640afa
SHA1:
737d05aa0e8f36f39add052a709089544712f3dc
Base64:
4aCD