C:
char c = '\u1881';
printf("%c\n", c); // Output: ᢁ
JavaScript:
const char = '\u1881';
console.log(char); // Output: ᢁ
Java:
char c = '\u1881';
System.out.println(c); // Output: ᢁ
JSON:
{"text": "\u1881"} // Value: ᢁ
Python:
char = '\u1881'
print(char) # Output: ᢁ
Perl:
my $char = "\x{1881}";
print $char; # Output: ᢁ
PHP:
$char = "\x{1881}";
echo $char; // Output: ᢁ
Ruby:
char = "\u{1881}"
puts char # Output: ᢁ
Rust:
let c = '\u{1881}';
println!("{}", c); // Output: ᢁ
Go:
char := '\u1881'
fmt.Printf("%c\n", char) // Output: ᢁ
CSS:
/* CSS content property */
.element::before {
content: "\001881"; /* 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%A2%81
MD5:
6c45bc9b76bf90dec9f92b9605bbbe23
SHA1:
7963a9c2c19e45eb5c2e468c9f433b656ce4086f
Base64:
4aKB