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