C:
char c = '\u7629';
printf("%c\n", c); // Output: 瘩
JavaScript:
const char = '\u7629';
console.log(char); // Output: 瘩
Java:
char c = '\u7629';
System.out.println(c); // Output: 瘩
JSON:
{"text": "\u7629"} // Value: 瘩
Python:
char = '\u7629'
print(char) # Output: 瘩
Perl:
my $char = "\x{7629}";
print $char; # Output: 瘩
PHP:
$char = "\x{7629}";
echo $char; // Output: 瘩
Ruby:
char = "\u{7629}"
puts char # Output: 瘩
Rust:
let c = '\u{7629}';
println!("{}", c); // Output: 瘩
Go:
char := '\u7629'
fmt.Printf("%c\n", char) // Output: 瘩
CSS:
/* CSS content property */
.element::before {
content: "\007629"; /* 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%A9
MD5:
b8fb421fde8aa3861d3b149fe5f258e1
SHA1:
9edb9d47d3b074da5dfffd84bb304c3d1d9b4f19
Base64:
55ip