C:
char c = '\u1A24';
printf("%c\n", c); // Output: ᨤ
JavaScript:
const char = '\u1A24';
console.log(char); // Output: ᨤ
Java:
char c = '\u1A24';
System.out.println(c); // Output: ᨤ
JSON:
{"text": "\u1A24"} // Value: ᨤ
Python:
char = '\u1A24'
print(char) # Output: ᨤ
Perl:
my $char = "\x{1A24}";
print $char; # Output: ᨤ
PHP:
$char = "\x{1A24}";
echo $char; // Output: ᨤ
Ruby:
char = "\u{1A24}"
puts char # Output: ᨤ
Rust:
let c = '\u{1A24}';
println!("{}", c); // Output: ᨤ
Go:
char := '\u1A24'
fmt.Printf("%c\n", char) // Output: ᨤ
CSS:
/* CSS content property */
.element::before {
content: "\001A24"; /* 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%A8%A4
MD5:
5611729566bea4bf365e3a87888e0eb0
SHA1:
914ec987f42876f668689ff27bec22d3e544c15a
Base64:
4aik