C:
char c = '\u5118';
printf("%c\n", c); // Output: 儘
JavaScript:
const char = '\u5118';
console.log(char); // Output: 儘
Java:
char c = '\u5118';
System.out.println(c); // Output: 儘
JSON:
{"text": "\u5118"} // Value: 儘
Python:
char = '\u5118'
print(char) # Output: 儘
Perl:
my $char = "\x{5118}";
print $char; # Output: 儘
PHP:
$char = "\x{5118}";
echo $char; // Output: 儘
Ruby:
char = "\u{5118}"
puts char # Output: 儘
Rust:
let c = '\u{5118}';
println!("{}", c); // Output: 儘
Go:
char := '\u5118'
fmt.Printf("%c\n", char) // Output: 儘
CSS:
/* CSS content property */
.element::before {
content: "\005118"; /* 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=%E5%84%98
MD5:
135c239ea648bdaed24159d78e80697d
SHA1:
07ebfd2220876228a3765463b2cd4f78ee052210
Base64:
5YSY