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