C:
char c = '\u1730';
printf("%c\n", c); // Output: ᜰ
JavaScript:
const char = '\u1730';
console.log(char); // Output: ᜰ
Java:
char c = '\u1730';
System.out.println(c); // Output: ᜰ
JSON:
{"text": "\u1730"} // Value: ᜰ
Python:
char = '\u1730'
print(char) # Output: ᜰ
Perl:
my $char = "\x{1730}";
print $char; # Output: ᜰ
PHP:
$char = "\x{1730}";
echo $char; // Output: ᜰ
Ruby:
char = "\u{1730}"
puts char # Output: ᜰ
Rust:
let c = '\u{1730}';
println!("{}", c); // Output: ᜰ
Go:
char := '\u1730'
fmt.Printf("%c\n", char) // Output: ᜰ
CSS:
/* CSS content property */
.element::before {
content: "\001730"; /* 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%B0
MD5:
2c3870c91802a97a11ab56d89e0af833
SHA1:
c7aef3dfc9ddd0a5b2d44dc75e447d914e86af9e
Base64:
4Zyw