C:
char c = '\u6108';
printf("%c\n", c); // Output: 愈
JavaScript:
const char = '\u6108';
console.log(char); // Output: 愈
Java:
char c = '\u6108';
System.out.println(c); // Output: 愈
JSON:
{"text": "\u6108"} // Value: 愈
Python:
char = '\u6108'
print(char) # Output: 愈
Perl:
my $char = "\x{6108}";
print $char; # Output: 愈
PHP:
$char = "\x{6108}";
echo $char; // Output: 愈
Ruby:
char = "\u{6108}"
puts char # Output: 愈
Rust:
let c = '\u{6108}';
println!("{}", c); // Output: 愈
Go:
char := '\u6108'
fmt.Printf("%c\n", char) // Output: 愈
CSS:
/* CSS content property */
.element::before {
content: "\006108"; /* 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%84%88
MD5:
7d542b93b146a7c6201af2a886d33de5
SHA1:
f53efe28245dc1dcec346f2977a4849a36e3f5a8
Base64:
5oSI