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