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