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