C:
char c = '\u7630';
printf("%c\n", c); // Output: 瘰
JavaScript:
const char = '\u7630';
console.log(char); // Output: 瘰
Java:
char c = '\u7630';
System.out.println(c); // Output: 瘰
JSON:
{"text": "\u7630"} // Value: 瘰
Python:
char = '\u7630'
print(char) # Output: 瘰
Perl:
my $char = "\x{7630}";
print $char; # Output: 瘰
PHP:
$char = "\x{7630}";
echo $char; // Output: 瘰
Ruby:
char = "\u{7630}"
puts char # Output: 瘰
Rust:
let c = '\u{7630}';
println!("{}", c); // Output: 瘰
Go:
char := '\u7630'
fmt.Printf("%c\n", char) // Output: 瘰
CSS:
/* CSS content property */
.element::before {
content: "\007630"; /* 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%B0
MD5:
ae5f69511c19735b5dca0716bf262fef
SHA1:
cdff24b82d5d9e8d28b5cb7c586e98c685200120
Base64:
55iw