C:
char c = '\u7902';
printf("%c\n", c); // Output: 礂
JavaScript:
const char = '\u7902';
console.log(char); // Output: 礂
Java:
char c = '\u7902';
System.out.println(c); // Output: 礂
JSON:
{"text": "\u7902"} // Value: 礂
Python:
char = '\u7902'
print(char) # Output: 礂
Perl:
my $char = "\x{7902}";
print $char; # Output: 礂
PHP:
$char = "\x{7902}";
echo $char; // Output: 礂
Ruby:
char = "\u{7902}"
puts char # Output: 礂
Rust:
let c = '\u{7902}';
println!("{}", c); // Output: 礂
Go:
char := '\u7902'
fmt.Printf("%c\n", char) // Output: 礂
CSS:
/* CSS content property */
.element::before {
content: "\007902"; /* 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%82
MD5:
77137c28513c2193c96b84572b7ac03f
SHA1:
d833dfee7d298a8259752836d60f6bacb0a3b72f
Base64:
56SC