C:
char c = '\u9232';
printf("%c\n", c); // Output: 鈲
JavaScript:
const char = '\u9232';
console.log(char); // Output: 鈲
Java:
char c = '\u9232';
System.out.println(c); // Output: 鈲
JSON:
{"text": "\u9232"} // Value: 鈲
Python:
char = '\u9232'
print(char) # Output: 鈲
Perl:
my $char = "\x{9232}";
print $char; # Output: 鈲
PHP:
$char = "\x{9232}";
echo $char; // Output: 鈲
Ruby:
char = "\u{9232}"
puts char # Output: 鈲
Rust:
let c = '\u{9232}';
println!("{}", c); // Output: 鈲
Go:
char := '\u9232'
fmt.Printf("%c\n", char) // Output: 鈲
CSS:
/* CSS content property */
.element::before {
content: "\009232"; /* 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=%E9%88%B2
MD5:
cb33ce4d7cdacd1e4593e1a94992912a
SHA1:
48026bc1fb7391ef5978edc461719456f2735535
Base64:
6Yiy