C:
char c = '\u5386';
printf("%c\n", c); // Output: 历
JavaScript:
const char = '\u5386';
console.log(char); // Output: 历
Java:
char c = '\u5386';
System.out.println(c); // Output: 历
JSON:
{"text": "\u5386"} // Value: 历
Python:
char = '\u5386'
print(char) # Output: 历
Perl:
my $char = "\x{5386}";
print $char; # Output: 历
PHP:
$char = "\x{5386}";
echo $char; // Output: 历
Ruby:
char = "\u{5386}"
puts char # Output: 历
Rust:
let c = '\u{5386}';
println!("{}", c); // Output: 历
Go:
char := '\u5386'
fmt.Printf("%c\n", char) // Output: 历
CSS:
/* CSS content property */
.element::before {
content: "\005386"; /* 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%8E%86
MD5:
a184f0e2a2dd7152be1d655eca497108
SHA1:
5cf1eb8d3bc80cdec8f7a2cc061130f51dfd3429
Base64:
5Y6G