C:
char c = '\u6170';
printf("%c\n", c); // Output: 慰
JavaScript:
const char = '\u6170';
console.log(char); // Output: 慰
Java:
char c = '\u6170';
System.out.println(c); // Output: 慰
JSON:
{"text": "\u6170"} // Value: 慰
Python:
char = '\u6170'
print(char) # Output: 慰
Perl:
my $char = "\x{6170}";
print $char; # Output: 慰
PHP:
$char = "\x{6170}";
echo $char; // Output: 慰
Ruby:
char = "\u{6170}"
puts char # Output: 慰
Rust:
let c = '\u{6170}';
println!("{}", c); // Output: 慰
Go:
char := '\u6170'
fmt.Printf("%c\n", char) // Output: 慰
CSS:
/* CSS content property */
.element::before {
content: "\006170"; /* 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=%E6%85%B0
MD5:
afe1b9c8116b8ecad36563533ec1ff9d
SHA1:
045ebb11a1c47b7d9ecd33267b7a632f89297b98
Base64:
5oWw