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