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