C:
char c = '\u5360';
printf("%c\n", c); // Output: 占
JavaScript:
const char = '\u5360';
console.log(char); // Output: 占
Java:
char c = '\u5360';
System.out.println(c); // Output: 占
JSON:
{"text": "\u5360"} // Value: 占
Python:
char = '\u5360'
print(char) # Output: 占
Perl:
my $char = "\x{5360}";
print $char; # Output: 占
PHP:
$char = "\x{5360}";
echo $char; // Output: 占
Ruby:
char = "\u{5360}"
puts char # Output: 占
Rust:
let c = '\u{5360}';
println!("{}", c); // Output: 占
Go:
char := '\u5360'
fmt.Printf("%c\n", char) // Output: 占
CSS:
/* CSS content property */
.element::before {
content: "\005360"; /* 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%8D%A0
MD5:
cc03837167676d8297b4280e745b2e9f
SHA1:
f15480b4ae2399edaecf2d78d88f894dcfc48f7b
Base64:
5Y2g