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