C:
char c = '\u5112';
printf("%c\n", c); // Output: 儒
JavaScript:
const char = '\u5112';
console.log(char); // Output: 儒
Java:
char c = '\u5112';
System.out.println(c); // Output: 儒
JSON:
{"text": "\u5112"} // Value: 儒
Python:
char = '\u5112'
print(char) # Output: 儒
Perl:
my $char = "\x{5112}";
print $char; # Output: 儒
PHP:
$char = "\x{5112}";
echo $char; // Output: 儒
Ruby:
char = "\u{5112}"
puts char # Output: 儒
Rust:
let c = '\u{5112}';
println!("{}", c); // Output: 儒
Go:
char := '\u5112'
fmt.Printf("%c\n", char) // Output: 儒
CSS:
/* CSS content property */
.element::before {
content: "\005112"; /* 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%92
MD5:
45c32487b0d4a7fc770d59276bec34df
SHA1:
17cf006df83eaa29f05d51bbd84edba3b3d2f872
Base64:
5YSS