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