C:
char c = '\u5315';
printf("%c\n", c); // Output: 匕
JavaScript:
const char = '\u5315';
console.log(char); // Output: 匕
Java:
char c = '\u5315';
System.out.println(c); // Output: 匕
JSON:
{"text": "\u5315"} // Value: 匕
Python:
char = '\u5315'
print(char) # Output: 匕
Perl:
my $char = "\x{5315}";
print $char; # Output: 匕
PHP:
$char = "\x{5315}";
echo $char; // Output: 匕
Ruby:
char = "\u{5315}"
puts char # Output: 匕
Rust:
let c = '\u{5315}';
println!("{}", c); // Output: 匕
Go:
char := '\u5315'
fmt.Printf("%c\n", char) // Output: 匕
CSS:
/* CSS content property */
.element::before {
content: "\005315"; /* 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%8C%95
MD5:
e9cd925fec6994e0cf185e49a37e2bd3
SHA1:
82975fac8f2078818db88a013e5cf780eeb2fe98
Base64:
5YyV