C:
char c = '\u1841';
printf("%c\n", c); // Output: ᡁ
JavaScript:
const char = '\u1841';
console.log(char); // Output: ᡁ
Java:
char c = '\u1841';
System.out.println(c); // Output: ᡁ
JSON:
{"text": "\u1841"} // Value: ᡁ
Python:
char = '\u1841'
print(char) # Output: ᡁ
Perl:
my $char = "\x{1841}";
print $char; # Output: ᡁ
PHP:
$char = "\x{1841}";
echo $char; // Output: ᡁ
Ruby:
char = "\u{1841}"
puts char # Output: ᡁ
Rust:
let c = '\u{1841}';
println!("{}", c); // Output: ᡁ
Go:
char := '\u1841'
fmt.Printf("%c\n", char) // Output: ᡁ
CSS:
/* CSS content property */
.element::before {
content: "\001841"; /* 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%81
MD5:
20e79ac9a81c300401e52969355d42d4
SHA1:
edba38b00743630fcd86ee71b9bf5063dbb05736
Base64:
4aGB