C:
char c = '\u2E80';
printf("%c\n", c); // Output: ⺀
JavaScript:
const char = '\u2E80';
console.log(char); // Output: ⺀
Java:
char c = '\u2E80';
System.out.println(c); // Output: ⺀
JSON:
{"text": "\u2E80"} // Value: ⺀
Python:
char = '\u2E80'
print(char) # Output: ⺀
Perl:
my $char = "\x{2E80}";
print $char; # Output: ⺀
PHP:
$char = "\x{2E80}";
echo $char; // Output: ⺀
Ruby:
char = "\u{2E80}"
puts char # Output: ⺀
Rust:
let c = '\u{2E80}';
println!("{}", c); // Output: ⺀
Go:
char := '\u2E80'
fmt.Printf("%c\n", char) // Output: ⺀
CSS:
/* CSS content property */
.element::before {
content: "\002E80"; /* 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=%E2%BA%80
MD5:
79cf7ab2e04d70ce7dc822af7f6ef31e
SHA1:
d048241e9ae70d68152b5231109d43b428cc1d7c
Base64:
4rqA