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