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