C:
char c = '\u1932';
printf("%c\n", c); // Output: ᤲ
JavaScript:
const char = '\u1932';
console.log(char); // Output: ᤲ
Java:
char c = '\u1932';
System.out.println(c); // Output: ᤲ
JSON:
{"text": "\u1932"} // Value: ᤲ
Python:
char = '\u1932'
print(char) # Output: ᤲ
Perl:
my $char = "\x{1932}";
print $char; # Output: ᤲ
PHP:
$char = "\x{1932}";
echo $char; // Output: ᤲ
Ruby:
char = "\u{1932}"
puts char # Output: ᤲ
Rust:
let c = '\u{1932}';
println!("{}", c); // Output: ᤲ
Go:
char := '\u1932'
fmt.Printf("%c\n", char) // Output: ᤲ
CSS:
/* CSS content property */
.element::before {
content: "\001932"; /* 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%B2
MD5:
572d1da5aa213edb9ce95c2d5c767e3f
SHA1:
d6629f12dc7fc67b4143bff2616f67d1c467b770
Base64:
4aSy