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