C:
char c = '\u7932';
printf("%c\n", c); // Output: 礲
JavaScript:
const char = '\u7932';
console.log(char); // Output: 礲
Java:
char c = '\u7932';
System.out.println(c); // Output: 礲
JSON:
{"text": "\u7932"} // Value: 礲
Python:
char = '\u7932'
print(char) # Output: 礲
Perl:
my $char = "\x{7932}";
print $char; # Output: 礲
PHP:
$char = "\x{7932}";
echo $char; // Output: 礲
Ruby:
char = "\u{7932}"
puts char # Output: 礲
Rust:
let c = '\u{7932}';
println!("{}", c); // Output: 礲
Go:
char := '\u7932'
fmt.Printf("%c\n", char) // Output: 礲
CSS:
/* CSS content property */
.element::before {
content: "\007932"; /* 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=%E7%A4%B2
MD5:
323844fbee3e39faf36c3c818f25f5ba
SHA1:
c68cfd2dc939153fbdba3e75eece5afcc40d9dd2
Base64:
56Sy