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