C:
char c = '\u5899';
printf("%c\n", c); // Output: 墙
JavaScript:
const char = '\u5899';
console.log(char); // Output: 墙
Java:
char c = '\u5899';
System.out.println(c); // Output: 墙
JSON:
{"text": "\u5899"} // Value: 墙
Python:
char = '\u5899'
print(char) # Output: 墙
Perl:
my $char = "\x{5899}";
print $char; # Output: 墙
PHP:
$char = "\x{5899}";
echo $char; // Output: 墙
Ruby:
char = "\u{5899}"
puts char # Output: 墙
Rust:
let c = '\u{5899}';
println!("{}", c); // Output: 墙
Go:
char := '\u5899'
fmt.Printf("%c\n", char) // Output: 墙
CSS:
/* CSS content property */
.element::before {
content: "\005899"; /* 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%A2%99
MD5:
3d1460865168d9ef1dc3f605cf119284
SHA1:
6512c722747c85cdd995933f708c456b61efff5c
Base64:
5aKZ