C:
char c = '\u1660';
printf("%c\n", c); // Output: ᙠ
JavaScript:
const char = '\u1660';
console.log(char); // Output: ᙠ
Java:
char c = '\u1660';
System.out.println(c); // Output: ᙠ
JSON:
{"text": "\u1660"} // Value: ᙠ
Python:
char = '\u1660'
print(char) # Output: ᙠ
Perl:
my $char = "\x{1660}";
print $char; # Output: ᙠ
PHP:
$char = "\x{1660}";
echo $char; // Output: ᙠ
Ruby:
char = "\u{1660}"
puts char # Output: ᙠ
Rust:
let c = '\u{1660}';
println!("{}", c); // Output: ᙠ
Go:
char := '\u1660'
fmt.Printf("%c\n", char) // Output: ᙠ
CSS:
/* CSS content property */
.element::before {
content: "\001660"; /* 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%99%A0
MD5:
f5879dee9611cb9a712c765b2f211610
SHA1:
c72c06e3d166fc845a727527dcf8387d54efb0fc
Base64:
4Zmg