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