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