C:
char c = '\u1713';
printf("%c\n", c); // Output: ᜓ
JavaScript:
const char = '\u1713';
console.log(char); // Output: ᜓ
Java:
char c = '\u1713';
System.out.println(c); // Output: ᜓ
JSON:
{"text": "\u1713"} // Value: ᜓ
Python:
char = '\u1713'
print(char) # Output: ᜓ
Perl:
my $char = "\x{1713}";
print $char; # Output: ᜓ
PHP:
$char = "\x{1713}";
echo $char; // Output: ᜓ
Ruby:
char = "\u{1713}"
puts char # Output: ᜓ
Rust:
let c = '\u{1713}';
println!("{}", c); // Output: ᜓ
Go:
char := '\u1713'
fmt.Printf("%c\n", char) // Output: ᜓ
CSS:
/* CSS content property */
.element::before {
content: "\001713"; /* 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%93
MD5:
07d32ebfc1c2bbd7d851cd4dbfa8a228
SHA1:
940e9c2203db13b2a3e808498fe5ec1ab9c14a70
Base64:
4ZyT