C:
char c = '\u5216';
printf("%c\n", c); // Output: 刖
JavaScript:
const char = '\u5216';
console.log(char); // Output: 刖
Java:
char c = '\u5216';
System.out.println(c); // Output: 刖
JSON:
{"text": "\u5216"} // Value: 刖
Python:
char = '\u5216'
print(char) # Output: 刖
Perl:
my $char = "\x{5216}";
print $char; # Output: 刖
PHP:
$char = "\x{5216}";
echo $char; // Output: 刖
Ruby:
char = "\u{5216}"
puts char # Output: 刖
Rust:
let c = '\u{5216}';
println!("{}", c); // Output: 刖
Go:
char := '\u5216'
fmt.Printf("%c\n", char) // Output: 刖
CSS:
/* CSS content property */
.element::before {
content: "\005216"; /* 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%96
MD5:
980bb6465b12496d420ff5b6eedb869f
SHA1:
b9f2bab216d1698d479c30da7462f01ee83c42f2
Base64:
5YiW