C:
char c = '\u15A7';
printf("%c\n", c); // Output: ᖧ
JavaScript:
const char = '\u15A7';
console.log(char); // Output: ᖧ
Java:
char c = '\u15A7';
System.out.println(c); // Output: ᖧ
JSON:
{"text": "\u15A7"} // Value: ᖧ
Python:
char = '\u15A7'
print(char) # Output: ᖧ
Perl:
my $char = "\x{15A7}";
print $char; # Output: ᖧ
PHP:
$char = "\x{15A7}";
echo $char; // Output: ᖧ
Ruby:
char = "\u{15A7}"
puts char # Output: ᖧ
Rust:
let c = '\u{15A7}';
println!("{}", c); // Output: ᖧ
Go:
char := '\u15A7'
fmt.Printf("%c\n", char) // Output: ᖧ
CSS:
/* CSS content property */
.element::before {
content: "\0015A7"; /* 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%A7
MD5:
620114179afba52e0f1fd0ce86556007
SHA1:
469366e987067ba833919bfd6a1024f7dad145e6
Base64:
4Zan