C:
char c = '\u5296';
printf("%c\n", c); // Output: 劖
JavaScript:
const char = '\u5296';
console.log(char); // Output: 劖
Java:
char c = '\u5296';
System.out.println(c); // Output: 劖
JSON:
{"text": "\u5296"} // Value: 劖
Python:
char = '\u5296'
print(char) # Output: 劖
Perl:
my $char = "\x{5296}";
print $char; # Output: 劖
PHP:
$char = "\x{5296}";
echo $char; // Output: 劖
Ruby:
char = "\u{5296}"
puts char # Output: 劖
Rust:
let c = '\u{5296}';
println!("{}", c); // Output: 劖
Go:
char := '\u5296'
fmt.Printf("%c\n", char) // Output: 劖
CSS:
/* CSS content property */
.element::before {
content: "\005296"; /* 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%8A%96
MD5:
358d0128f32d0fa0df7aa6b2c44a2358
SHA1:
87012955743fb426791601ae1cc32a8f7c46d893
Base64:
5YqW