C:
char c = '\u188C';
printf("%c\n", c); // Output: ᢌ
JavaScript:
const char = '\u188C';
console.log(char); // Output: ᢌ
Java:
char c = '\u188C';
System.out.println(c); // Output: ᢌ
JSON:
{"text": "\u188C"} // Value: ᢌ
Python:
char = '\u188C'
print(char) # Output: ᢌ
Perl:
my $char = "\x{188C}";
print $char; # Output: ᢌ
PHP:
$char = "\x{188C}";
echo $char; // Output: ᢌ
Ruby:
char = "\u{188C}"
puts char # Output: ᢌ
Rust:
let c = '\u{188C}';
println!("{}", c); // Output: ᢌ
Go:
char := '\u188C'
fmt.Printf("%c\n", char) // Output: ᢌ
CSS:
/* CSS content property */
.element::before {
content: "\00188C"; /* 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%A2%8C
MD5:
28f88390808144c95ebcf3d87d4dc164
SHA1:
060fe2bf8de7e30c5e5ad5ac0877c7a88d619042
Base64:
4aKM