C:
char c = '\u1188';
printf("%c\n", c); // Output: ᆈ
JavaScript:
const char = '\u1188';
console.log(char); // Output: ᆈ
Java:
char c = '\u1188';
System.out.println(c); // Output: ᆈ
JSON:
{"text": "\u1188"} // Value: ᆈ
Python:
char = '\u1188'
print(char) # Output: ᆈ
Perl:
my $char = "\x{1188}";
print $char; # Output: ᆈ
PHP:
$char = "\x{1188}";
echo $char; // Output: ᆈ
Ruby:
char = "\u{1188}"
puts char # Output: ᆈ
Rust:
let c = '\u{1188}';
println!("{}", c); // Output: ᆈ
Go:
char := '\u1188'
fmt.Printf("%c\n", char) // Output: ᆈ
CSS:
/* CSS content property */
.element::before {
content: "\001188"; /* 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%86%88
MD5:
f8c0d239807b7aa1b29d149ac0029c85
SHA1:
653c714b0c4f73f60acb00703b26627f3d982c92
Base64:
4YaI