C:
char c = '\u1703';
printf("%c\n", c); // Output: ᜃ
JavaScript:
const char = '\u1703';
console.log(char); // Output: ᜃ
Java:
char c = '\u1703';
System.out.println(c); // Output: ᜃ
JSON:
{"text": "\u1703"} // Value: ᜃ
Python:
char = '\u1703'
print(char) # Output: ᜃ
Perl:
my $char = "\x{1703}";
print $char; # Output: ᜃ
PHP:
$char = "\x{1703}";
echo $char; // Output: ᜃ
Ruby:
char = "\u{1703}"
puts char # Output: ᜃ
Rust:
let c = '\u{1703}';
println!("{}", c); // Output: ᜃ
Go:
char := '\u1703'
fmt.Printf("%c\n", char) // Output: ᜃ
CSS:
/* CSS content property */
.element::before {
content: "\001703"; /* 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%83
MD5:
3aad1789830b47e560bbc47bd702ae32
SHA1:
d7c84610e223da66078d48f33d2ca0a2a2b3fa32
Base64:
4ZyD