C:
char c = '\u7931';
printf("%c\n", c); // Output: 礱
JavaScript:
const char = '\u7931';
console.log(char); // Output: 礱
Java:
char c = '\u7931';
System.out.println(c); // Output: 礱
JSON:
{"text": "\u7931"} // Value: 礱
Python:
char = '\u7931'
print(char) # Output: 礱
Perl:
my $char = "\x{7931}";
print $char; # Output: 礱
PHP:
$char = "\x{7931}";
echo $char; // Output: 礱
Ruby:
char = "\u{7931}"
puts char # Output: 礱
Rust:
let c = '\u{7931}';
println!("{}", c); // Output: 礱
Go:
char := '\u7931'
fmt.Printf("%c\n", char) // Output: 礱
CSS:
/* CSS content property */
.element::before {
content: "\007931"; /* 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%B1
MD5:
b08112caeef1f4cad3a3cc3a22716835
SHA1:
2560d7ef195009021eb22968e8e68cae127bf210
Base64:
56Sx