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