C:
char c = '\u1116';
printf("%c\n", c); // Output: ᄖ
JavaScript:
const char = '\u1116';
console.log(char); // Output: ᄖ
Java:
char c = '\u1116';
System.out.println(c); // Output: ᄖ
JSON:
{"text": "\u1116"} // Value: ᄖ
Python:
char = '\u1116'
print(char) # Output: ᄖ
Perl:
my $char = "\x{1116}";
print $char; # Output: ᄖ
PHP:
$char = "\x{1116}";
echo $char; // Output: ᄖ
Ruby:
char = "\u{1116}"
puts char # Output: ᄖ
Rust:
let c = '\u{1116}';
println!("{}", c); // Output: ᄖ
Go:
char := '\u1116'
fmt.Printf("%c\n", char) // Output: ᄖ
CSS:
/* CSS content property */
.element::before {
content: "\001116"; /* 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%84%96
MD5:
788c6fbeaa2f4c1858048306bd66afaf
SHA1:
e2685d5c9d4b47c50f9f126313cc09c383006c09
Base64:
4YSW