C:
char c = '\u7913';
printf("%c\n", c); // Output: 礓
JavaScript:
const char = '\u7913';
console.log(char); // Output: 礓
Java:
char c = '\u7913';
System.out.println(c); // Output: 礓
JSON:
{"text": "\u7913"} // Value: 礓
Python:
char = '\u7913'
print(char) # Output: 礓
Perl:
my $char = "\x{7913}";
print $char; # Output: 礓
PHP:
$char = "\x{7913}";
echo $char; // Output: 礓
Ruby:
char = "\u{7913}"
puts char # Output: 礓
Rust:
let c = '\u{7913}';
println!("{}", c); // Output: 礓
Go:
char := '\u7913'
fmt.Printf("%c\n", char) // Output: 礓
CSS:
/* CSS content property */
.element::before {
content: "\007913"; /* 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%93
MD5:
4ab2d4eff5520b1607320d0cedeebf60
SHA1:
033cc119ebf8928875a4828ea312e76fd0a34947
Base64:
56ST