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