C:
char c = '\u5904';
printf("%c\n", c); // Output: 处
JavaScript:
const char = '\u5904';
console.log(char); // Output: 处
Java:
char c = '\u5904';
System.out.println(c); // Output: 处
JSON:
{"text": "\u5904"} // Value: 处
Python:
char = '\u5904'
print(char) # Output: 处
Perl:
my $char = "\x{5904}";
print $char; # Output: 处
PHP:
$char = "\x{5904}";
echo $char; // Output: 处
Ruby:
char = "\u{5904}"
puts char # Output: 处
Rust:
let c = '\u{5904}';
println!("{}", c); // Output: 处
Go:
char := '\u5904'
fmt.Printf("%c\n", char) // Output: 处
CSS:
/* CSS content property */
.element::before {
content: "\005904"; /* 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%A4%84
MD5:
b59907bab8318fcfffdb0ac3e0918534
SHA1:
59e25af67494359dce465f3eacb326d01f005b97
Base64:
5aSE