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