C:
char c = '\u6614';
printf("%c\n", c); // Output: 昔
JavaScript:
const char = '\u6614';
console.log(char); // Output: 昔
Java:
char c = '\u6614';
System.out.println(c); // Output: 昔
JSON:
{"text": "\u6614"} // Value: 昔
Python:
char = '\u6614'
print(char) # Output: 昔
Perl:
my $char = "\x{6614}";
print $char; # Output: 昔
PHP:
$char = "\x{6614}";
echo $char; // Output: 昔
Ruby:
char = "\u{6614}"
puts char # Output: 昔
Rust:
let c = '\u{6614}';
println!("{}", c); // Output: 昔
Go:
char := '\u6614'
fmt.Printf("%c\n", char) // Output: 昔
CSS:
/* CSS content property */
.element::before {
content: "\006614"; /* 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%98%94
MD5:
312741488ba92d132890844dd8c0ea39
SHA1:
cccfb185278a667247cf6e9cc5d3b10f60453abc
Base64:
5piU