C:
char c = '\u1922';
printf("%c\n", c); // Output: ᤢ
JavaScript:
const char = '\u1922';
console.log(char); // Output: ᤢ
Java:
char c = '\u1922';
System.out.println(c); // Output: ᤢ
JSON:
{"text": "\u1922"} // Value: ᤢ
Python:
char = '\u1922'
print(char) # Output: ᤢ
Perl:
my $char = "\x{1922}";
print $char; # Output: ᤢ
PHP:
$char = "\x{1922}";
echo $char; // Output: ᤢ
Ruby:
char = "\u{1922}"
puts char # Output: ᤢ
Rust:
let c = '\u{1922}';
println!("{}", c); // Output: ᤢ
Go:
char := '\u1922'
fmt.Printf("%c\n", char) // Output: ᤢ
CSS:
/* CSS content property */
.element::before {
content: "\001922"; /* 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%A2
MD5:
50adb4be3e7abaef7f53737de7e1e561
SHA1:
53e3a181a883faba7383f1037a2794cb5a1746dc
Base64:
4aSi