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