C:
char c = '\u5358';
printf("%c\n", c); // Output: 単
JavaScript:
const char = '\u5358';
console.log(char); // Output: 単
Java:
char c = '\u5358';
System.out.println(c); // Output: 単
JSON:
{"text": "\u5358"} // Value: 単
Python:
char = '\u5358'
print(char) # Output: 単
Perl:
my $char = "\x{5358}";
print $char; # Output: 単
PHP:
$char = "\x{5358}";
echo $char; // Output: 単
Ruby:
char = "\u{5358}"
puts char # Output: 単
Rust:
let c = '\u{5358}';
println!("{}", c); // Output: 単
Go:
char := '\u5358'
fmt.Printf("%c\n", char) // Output: 単
CSS:
/* CSS content property */
.element::before {
content: "\005358"; /* 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%8D%98
MD5:
d43eb706e6789bac1c3370bd380d9533
SHA1:
253ebd09a45a036ee849ef4de5e21c940de6a404
Base64:
5Y2Y