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