C:
char c = '\u1187';
printf("%c\n", c); // Output: ᆇ
JavaScript:
const char = '\u1187';
console.log(char); // Output: ᆇ
Java:
char c = '\u1187';
System.out.println(c); // Output: ᆇ
JSON:
{"text": "\u1187"} // Value: ᆇ
Python:
char = '\u1187'
print(char) # Output: ᆇ
Perl:
my $char = "\x{1187}";
print $char; # Output: ᆇ
PHP:
$char = "\x{1187}";
echo $char; // Output: ᆇ
Ruby:
char = "\u{1187}"
puts char # Output: ᆇ
Rust:
let c = '\u{1187}';
println!("{}", c); // Output: ᆇ
Go:
char := '\u1187'
fmt.Printf("%c\n", char) // Output: ᆇ
CSS:
/* CSS content property */
.element::before {
content: "\001187"; /* 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%87
MD5:
cb8e0b70eabdd208f518dd575d2cafe8
SHA1:
e86ca3f19c82d29c481ad6283ec9dcefe02d0ab3
Base64:
4YaH