C:
char c = '\u1991';
printf("%c\n", c); // Output: ᦑ
JavaScript:
const char = '\u1991';
console.log(char); // Output: ᦑ
Java:
char c = '\u1991';
System.out.println(c); // Output: ᦑ
JSON:
{"text": "\u1991"} // Value: ᦑ
Python:
char = '\u1991'
print(char) # Output: ᦑ
Perl:
my $char = "\x{1991}";
print $char; # Output: ᦑ
PHP:
$char = "\x{1991}";
echo $char; // Output: ᦑ
Ruby:
char = "\u{1991}"
puts char # Output: ᦑ
Rust:
let c = '\u{1991}';
println!("{}", c); // Output: ᦑ
Go:
char := '\u1991'
fmt.Printf("%c\n", char) // Output: ᦑ
CSS:
/* CSS content property */
.element::before {
content: "\001991"; /* 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%91
MD5:
7acdc6b5182f2f49144c969c87b3972c
SHA1:
b554ead79d49f263bf0a4cc3762742825bb97cd5
Base64:
4aaR