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