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