C:
char c = '\u1728';
printf("%c\n", c); // Output: ᜨ
JavaScript:
const char = '\u1728';
console.log(char); // Output: ᜨ
Java:
char c = '\u1728';
System.out.println(c); // Output: ᜨ
JSON:
{"text": "\u1728"} // Value: ᜨ
Python:
char = '\u1728'
print(char) # Output: ᜨ
Perl:
my $char = "\x{1728}";
print $char; # Output: ᜨ
PHP:
$char = "\x{1728}";
echo $char; // Output: ᜨ
Ruby:
char = "\u{1728}"
puts char # Output: ᜨ
Rust:
let c = '\u{1728}';
println!("{}", c); // Output: ᜨ
Go:
char := '\u1728'
fmt.Printf("%c\n", char) // Output: ᜨ
CSS:
/* CSS content property */
.element::before {
content: "\001728"; /* 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%9C%A8
MD5:
653ba23dfc0ab47974fbdad51b5c01b0
SHA1:
531e93d8c03c5a69c032f6078505df030244b62c
Base64:
4Zyo