C:
char c = '\u5C39';
printf("%c\n", c); // Output: 尹
JavaScript:
const char = '\u5C39';
console.log(char); // Output: 尹
Java:
char c = '\u5C39';
System.out.println(c); // Output: 尹
JSON:
{"text": "\u5C39"} // Value: 尹
Python:
char = '\u5C39'
print(char) # Output: 尹
Perl:
my $char = "\x{5C39}";
print $char; # Output: 尹
PHP:
$char = "\x{5C39}";
echo $char; // Output: 尹
Ruby:
char = "\u{5C39}"
puts char # Output: 尹
Rust:
let c = '\u{5C39}';
println!("{}", c); // Output: 尹
Go:
char := '\u5C39'
fmt.Printf("%c\n", char) // Output: 尹
CSS:
/* CSS content property */
.element::before {
content: "\005C39"; /* 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%B0%B9
MD5:
f159a72f37d038679635d9e9e2a9cd38
SHA1:
3afda0a11dc96ead044f34edf5c31a709a133ff9
Base64:
5bC5