C:
char c = '\u5668';
printf("%c\n", c); // Output: 器
JavaScript:
const char = '\u5668';
console.log(char); // Output: 器
Java:
char c = '\u5668';
System.out.println(c); // Output: 器
JSON:
{"text": "\u5668"} // Value: 器
Python:
char = '\u5668'
print(char) # Output: 器
Perl:
my $char = "\x{5668}";
print $char; # Output: 器
PHP:
$char = "\x{5668}";
echo $char; // Output: 器
Ruby:
char = "\u{5668}"
puts char # Output: 器
Rust:
let c = '\u{5668}';
println!("{}", c); // Output: 器
Go:
char := '\u5668'
fmt.Printf("%c\n", char) // Output: 器
CSS:
/* CSS content property */
.element::before {
content: "\005668"; /* 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%99%A8
MD5:
c656ce7ab50566ed6b9c7d9abfb38345
SHA1:
a9276057507f06efa69c3d24e90aeb34810c8ffb
Base64:
5Zmo