C:
char c = '\u1557';
printf("%c\n", c); // Output: ᕗ
JavaScript:
const char = '\u1557';
console.log(char); // Output: ᕗ
Java:
char c = '\u1557';
System.out.println(c); // Output: ᕗ
JSON:
{"text": "\u1557"} // Value: ᕗ
Python:
char = '\u1557'
print(char) # Output: ᕗ
Perl:
my $char = "\x{1557}";
print $char; # Output: ᕗ
PHP:
$char = "\x{1557}";
echo $char; // Output: ᕗ
Ruby:
char = "\u{1557}"
puts char # Output: ᕗ
Rust:
let c = '\u{1557}';
println!("{}", c); // Output: ᕗ
Go:
char := '\u1557'
fmt.Printf("%c\n", char) // Output: ᕗ
CSS:
/* CSS content property */
.element::before {
content: "\001557"; /* 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%97
MD5:
f1aea820b47068294a9c325a0e10e8d9
SHA1:
570901e62eaa191caef2a945cebe5be47b58b798
Base64:
4ZWX