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