C:
char c = '\u5168';
printf("%c\n", c); // Output: 全
JavaScript:
const char = '\u5168';
console.log(char); // Output: 全
Java:
char c = '\u5168';
System.out.println(c); // Output: 全
JSON:
{"text": "\u5168"} // Value: 全
Python:
char = '\u5168'
print(char) # Output: 全
Perl:
my $char = "\x{5168}";
print $char; # Output: 全
PHP:
$char = "\x{5168}";
echo $char; // Output: 全
Ruby:
char = "\u{5168}"
puts char # Output: 全
Rust:
let c = '\u{5168}';
println!("{}", c); // Output: 全
Go:
char := '\u5168'
fmt.Printf("%c\n", char) // Output: 全
CSS:
/* CSS content property */
.element::before {
content: "\005168"; /* 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%85%A8
MD5:
1e5142e81a34260029e8dc84c21d00d3
SHA1:
32a6d731e2c53092bae6e60ed70b2b7a1abdd606
Base64:
5YWo