C:
char c = '\u18CA';
printf("%c\n", c); // Output: ᣊ
JavaScript:
const char = '\u18CA';
console.log(char); // Output: ᣊ
Java:
char c = '\u18CA';
System.out.println(c); // Output: ᣊ
JSON:
{"text": "\u18CA"} // Value: ᣊ
Python:
char = '\u18CA'
print(char) # Output: ᣊ
Perl:
my $char = "\x{18CA}";
print $char; # Output: ᣊ
PHP:
$char = "\x{18CA}";
echo $char; // Output: ᣊ
Ruby:
char = "\u{18CA}"
puts char # Output: ᣊ
Rust:
let c = '\u{18CA}';
println!("{}", c); // Output: ᣊ
Go:
char := '\u18CA'
fmt.Printf("%c\n", char) // Output: ᣊ
CSS:
/* CSS content property */
.element::before {
content: "\0018CA"; /* 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%8A
MD5:
23e810ef68e6f32416a35d8581b32690
SHA1:
26fe949f6d6bb4608a142eccc9a7443b0109d5ea
Base64:
4aOK