C:
char c = '\u1520';
printf("%c\n", c); // Output: ᔠ
JavaScript:
const char = '\u1520';
console.log(char); // Output: ᔠ
Java:
char c = '\u1520';
System.out.println(c); // Output: ᔠ
JSON:
{"text": "\u1520"} // Value: ᔠ
Python:
char = '\u1520'
print(char) # Output: ᔠ
Perl:
my $char = "\x{1520}";
print $char; # Output: ᔠ
PHP:
$char = "\x{1520}";
echo $char; // Output: ᔠ
Ruby:
char = "\u{1520}"
puts char # Output: ᔠ
Rust:
let c = '\u{1520}';
println!("{}", c); // Output: ᔠ
Go:
char := '\u1520'
fmt.Printf("%c\n", char) // Output: ᔠ
CSS:
/* CSS content property */
.element::before {
content: "\001520"; /* 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%A0
MD5:
053363bb6dff315cea95c1eb473770a6
SHA1:
d21bfd1673ba824c50a59d7f0f962316c8882283
Base64:
4ZSg