C:
char c = '\u1928';
printf("%c\n", c); // Output: ᤨ
JavaScript:
const char = '\u1928';
console.log(char); // Output: ᤨ
Java:
char c = '\u1928';
System.out.println(c); // Output: ᤨ
JSON:
{"text": "\u1928"} // Value: ᤨ
Python:
char = '\u1928'
print(char) # Output: ᤨ
Perl:
my $char = "\x{1928}";
print $char; # Output: ᤨ
PHP:
$char = "\x{1928}";
echo $char; // Output: ᤨ
Ruby:
char = "\u{1928}"
puts char # Output: ᤨ
Rust:
let c = '\u{1928}';
println!("{}", c); // Output: ᤨ
Go:
char := '\u1928'
fmt.Printf("%c\n", char) // Output: ᤨ
CSS:
/* CSS content property */
.element::before {
content: "\001928"; /* 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%A8
MD5:
b9b470222482bae5760425dd3e5b846a
SHA1:
3dd95648e34ccd1aad138d15a410bfd7c81041e5
Base64:
4aSo