C:
char c = '\u1500';
printf("%c\n", c); // Output: ᔀ
JavaScript:
const char = '\u1500';
console.log(char); // Output: ᔀ
Java:
char c = '\u1500';
System.out.println(c); // Output: ᔀ
JSON:
{"text": "\u1500"} // Value: ᔀ
Python:
char = '\u1500'
print(char) # Output: ᔀ
Perl:
my $char = "\x{1500}";
print $char; # Output: ᔀ
PHP:
$char = "\x{1500}";
echo $char; // Output: ᔀ
Ruby:
char = "\u{1500}"
puts char # Output: ᔀ
Rust:
let c = '\u{1500}';
println!("{}", c); // Output: ᔀ
Go:
char := '\u1500'
fmt.Printf("%c\n", char) // Output: ᔀ
CSS:
/* CSS content property */
.element::before {
content: "\001500"; /* 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%94%80
MD5:
f4e0bdd1169dc6d729193bfa4c573939
SHA1:
779b033aa1f165604bcc55dbb70c90d0816a5829
Base64:
4ZSA