C:
char c = '\u5200';
printf("%c\n", c); // Output: 刀
JavaScript:
const char = '\u5200';
console.log(char); // Output: 刀
Java:
char c = '\u5200';
System.out.println(c); // Output: 刀
JSON:
{"text": "\u5200"} // Value: 刀
Python:
char = '\u5200'
print(char) # Output: 刀
Perl:
my $char = "\x{5200}";
print $char; # Output: 刀
PHP:
$char = "\x{5200}";
echo $char; // Output: 刀
Ruby:
char = "\u{5200}"
puts char # Output: 刀
Rust:
let c = '\u{5200}';
println!("{}", c); // Output: 刀
Go:
char := '\u5200'
fmt.Printf("%c\n", char) // Output: 刀
CSS:
/* CSS content property */
.element::before {
content: "\005200"; /* 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%88%80
MD5:
83f6c0da39d2f0341b8b76e2564c415a
SHA1:
c8f6dd0c320d279ae1e89682fa063e3eccf9cd31
Base64:
5YiA