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