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