C:
char c = '\u1A60';
printf("%c\n", c); // Output: ᩠
JavaScript:
const char = '\u1A60';
console.log(char); // Output: ᩠
Java:
char c = '\u1A60';
System.out.println(c); // Output: ᩠
JSON:
{"text": "\u1A60"} // Value: ᩠
Python:
char = '\u1A60'
print(char) # Output: ᩠
Perl:
my $char = "\x{1A60}";
print $char; # Output: ᩠
PHP:
$char = "\x{1A60}";
echo $char; // Output: ᩠
Ruby:
char = "\u{1A60}"
puts char # Output: ᩠
Rust:
let c = '\u{1A60}';
println!("{}", c); // Output: ᩠
Go:
char := '\u1A60'
fmt.Printf("%c\n", char) // Output: ᩠
CSS:
/* CSS content property */
.element::before {
content: "\001A60"; /* 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%A9%A0
MD5:
ee1d692f5d4eb849a000294738d30d57
SHA1:
2f0e7153749daabe5ef1d934386b6ea5cc40267d
Base64:
4amg