C:
char c = '\u5271';
printf("%c\n", c); // Output: 剱
JavaScript:
const char = '\u5271';
console.log(char); // Output: 剱
Java:
char c = '\u5271';
System.out.println(c); // Output: 剱
JSON:
{"text": "\u5271"} // Value: 剱
Python:
char = '\u5271'
print(char) # Output: 剱
Perl:
my $char = "\x{5271}";
print $char; # Output: 剱
PHP:
$char = "\x{5271}";
echo $char; // Output: 剱
Ruby:
char = "\u{5271}"
puts char # Output: 剱
Rust:
let c = '\u{5271}';
println!("{}", c); // Output: 剱
Go:
char := '\u5271'
fmt.Printf("%c\n", char) // Output: 剱
CSS:
/* CSS content property */
.element::before {
content: "\005271"; /* 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%89%B1
MD5:
b1111b049597d046d4b81ad0a42400ee
SHA1:
5cc09819b041a28f32a7618f0a2ff5747bc929fd
Base64:
5Ymx