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