C:
char c = '\u11EC';
printf("%c\n", c); // Output: ᇬ
JavaScript:
const char = '\u11EC';
console.log(char); // Output: ᇬ
Java:
char c = '\u11EC';
System.out.println(c); // Output: ᇬ
JSON:
{"text": "\u11EC"} // Value: ᇬ
Python:
char = '\u11EC'
print(char) # Output: ᇬ
Perl:
my $char = "\x{11EC}";
print $char; # Output: ᇬ
PHP:
$char = "\x{11EC}";
echo $char; // Output: ᇬ
Ruby:
char = "\u{11EC}"
puts char # Output: ᇬ
Rust:
let c = '\u{11EC}';
println!("{}", c); // Output: ᇬ
Go:
char := '\u11EC'
fmt.Printf("%c\n", char) // Output: ᇬ
CSS:
/* CSS content property */
.element::before {
content: "\0011EC"; /* 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%87%AC
MD5:
5775a8c1a6f26327b2f56f90c201dcfe
SHA1:
b8ea13e538d2b4f483d6bd041afc4484c4206b05
Base64:
4Yes