C:
char c = '\u1980';
printf("%c\n", c); // Output: ᦀ
JavaScript:
const char = '\u1980';
console.log(char); // Output: ᦀ
Java:
char c = '\u1980';
System.out.println(c); // Output: ᦀ
JSON:
{"text": "\u1980"} // Value: ᦀ
Python:
char = '\u1980'
print(char) # Output: ᦀ
Perl:
my $char = "\x{1980}";
print $char; # Output: ᦀ
PHP:
$char = "\x{1980}";
echo $char; // Output: ᦀ
Ruby:
char = "\u{1980}"
puts char # Output: ᦀ
Rust:
let c = '\u{1980}';
println!("{}", c); // Output: ᦀ
Go:
char := '\u1980'
fmt.Printf("%c\n", char) // Output: ᦀ
CSS:
/* CSS content property */
.element::before {
content: "\001980"; /* 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%80
MD5:
38b1f7d5c3592ac8506dbbeb6bbdef34
SHA1:
31816080042c86cde2a3cbb70b17397adf712e5b
Base64:
4aaA