C:
char c = '\u7631';
printf("%c\n", c); // Output: 瘱
JavaScript:
const char = '\u7631';
console.log(char); // Output: 瘱
Java:
char c = '\u7631';
System.out.println(c); // Output: 瘱
JSON:
{"text": "\u7631"} // Value: 瘱
Python:
char = '\u7631'
print(char) # Output: 瘱
Perl:
my $char = "\x{7631}";
print $char; # Output: 瘱
PHP:
$char = "\x{7631}";
echo $char; // Output: 瘱
Ruby:
char = "\u{7631}"
puts char # Output: 瘱
Rust:
let c = '\u{7631}';
println!("{}", c); // Output: 瘱
Go:
char := '\u7631'
fmt.Printf("%c\n", char) // Output: 瘱
CSS:
/* CSS content property */
.element::before {
content: "\007631"; /* 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%98%B1
MD5:
32be2c884c8a2e7e9b5f862fb01bdea2
SHA1:
80f37ce02eb9b71eb98b9636716d2451945e5d5d
Base64:
55ix