C:
char c = '\u1840';
printf("%c\n", c); // Output: ᡀ
JavaScript:
const char = '\u1840';
console.log(char); // Output: ᡀ
Java:
char c = '\u1840';
System.out.println(c); // Output: ᡀ
JSON:
{"text": "\u1840"} // Value: ᡀ
Python:
char = '\u1840'
print(char) # Output: ᡀ
Perl:
my $char = "\x{1840}";
print $char; # Output: ᡀ
PHP:
$char = "\x{1840}";
echo $char; // Output: ᡀ
Ruby:
char = "\u{1840}"
puts char # Output: ᡀ
Rust:
let c = '\u{1840}';
println!("{}", c); // Output: ᡀ
Go:
char := '\u1840'
fmt.Printf("%c\n", char) // Output: ᡀ
CSS:
/* CSS content property */
.element::before {
content: "\001840"; /* 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%80
MD5:
72408ed359945272f621503e0554a878
SHA1:
bae91cfff4195b1e219325d1d88d040f976d3e42
Base64:
4aGA