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