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