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