C:
char c = '\u1712';
printf("%c\n", c); // Output: ᜒ
JavaScript:
const char = '\u1712';
console.log(char); // Output: ᜒ
Java:
char c = '\u1712';
System.out.println(c); // Output: ᜒ
JSON:
{"text": "\u1712"} // Value: ᜒ
Python:
char = '\u1712'
print(char) # Output: ᜒ
Perl:
my $char = "\x{1712}";
print $char; # Output: ᜒ
PHP:
$char = "\x{1712}";
echo $char; // Output: ᜒ
Ruby:
char = "\u{1712}"
puts char # Output: ᜒ
Rust:
let c = '\u{1712}';
println!("{}", c); // Output: ᜒ
Go:
char := '\u1712'
fmt.Printf("%c\n", char) // Output: ᜒ
CSS:
/* CSS content property */
.element::before {
content: "\001712"; /* 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%92
MD5:
34b3e746696cabd1ab1775f234481597
SHA1:
45cb6ca4424914534bd91e0615d19fa054ed0328
Base64:
4ZyS