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