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