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