C:
char c = '\u1656';
printf("%c\n", c); // Output: ᙖ
JavaScript:
const char = '\u1656';
console.log(char); // Output: ᙖ
Java:
char c = '\u1656';
System.out.println(c); // Output: ᙖ
JSON:
{"text": "\u1656"} // Value: ᙖ
Python:
char = '\u1656'
print(char) # Output: ᙖ
Perl:
my $char = "\x{1656}";
print $char; # Output: ᙖ
PHP:
$char = "\x{1656}";
echo $char; // Output: ᙖ
Ruby:
char = "\u{1656}"
puts char # Output: ᙖ
Rust:
let c = '\u{1656}';
println!("{}", c); // Output: ᙖ
Go:
char := '\u1656'
fmt.Printf("%c\n", char) // Output: ᙖ
CSS:
/* CSS content property */
.element::before {
content: "\001656"; /* 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%96
MD5:
2434f45992d92062251eb6bed0d39d89
SHA1:
2613c67e626f17de5937b9b01c399d0e5044c704
Base64:
4ZmW