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