C:
char c = '\u5783';
printf("%c\n", c); // Output: 垃
JavaScript:
const char = '\u5783';
console.log(char); // Output: 垃
Java:
char c = '\u5783';
System.out.println(c); // Output: 垃
JSON:
{"text": "\u5783"} // Value: 垃
Python:
char = '\u5783'
print(char) # Output: 垃
Perl:
my $char = "\x{5783}";
print $char; # Output: 垃
PHP:
$char = "\x{5783}";
echo $char; // Output: 垃
Ruby:
char = "\u{5783}"
puts char # Output: 垃
Rust:
let c = '\u{5783}';
println!("{}", c); // Output: 垃
Go:
char := '\u5783'
fmt.Printf("%c\n", char) // Output: 垃
CSS:
/* CSS content property */
.element::before {
content: "\005783"; /* 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%9E%83
MD5:
905ff223553d9b8122ce0b4e93f9fae8
SHA1:
0eb3bd17eee9ea1e60b5bb341aed01ba84baf06e
Base64:
5Z6D