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