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