C:
char c = '\u5260';
printf("%c\n", c); // Output: 剠
JavaScript:
const char = '\u5260';
console.log(char); // Output: 剠
Java:
char c = '\u5260';
System.out.println(c); // Output: 剠
JSON:
{"text": "\u5260"} // Value: 剠
Python:
char = '\u5260'
print(char) # Output: 剠
Perl:
my $char = "\x{5260}";
print $char; # Output: 剠
PHP:
$char = "\x{5260}";
echo $char; // Output: 剠
Ruby:
char = "\u{5260}"
puts char # Output: 剠
Rust:
let c = '\u{5260}';
println!("{}", c); // Output: 剠
Go:
char := '\u5260'
fmt.Printf("%c\n", char) // Output: 剠
CSS:
/* CSS content property */
.element::before {
content: "\005260"; /* 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%A0
MD5:
d7dffc25ee254b48826b5d3605cdb68d
SHA1:
89814ec664817376e3f5f66218712a835779f9c3
Base64:
5Ymg