C:
char c = '\u4F11';
printf("%c\n", c); // Output: 休
JavaScript:
const char = '\u4F11';
console.log(char); // Output: 休
Java:
char c = '\u4F11';
System.out.println(c); // Output: 休
JSON:
{"text": "\u4F11"} // Value: 休
Python:
char = '\u4F11'
print(char) # Output: 休
Perl:
my $char = "\x{4F11}";
print $char; # Output: 休
PHP:
$char = "\x{4F11}";
echo $char; // Output: 休
Ruby:
char = "\u{4F11}"
puts char # Output: 休
Rust:
let c = '\u{4F11}';
println!("{}", c); // Output: 休
Go:
char := '\u4F11'
fmt.Printf("%c\n", char) // Output: 休
CSS:
/* CSS content property */
.element::before {
content: "\004F11"; /* 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=%E4%BC%91
MD5:
51147c21528d3df27e4d8eb8a1ebd00b
SHA1:
0afbe7b539e1a1fb8bc41209ca28d526d4447ec0
Base64:
5LyR