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