C:
char c = '\u52D9';
printf("%c\n", c); // Output: 務
JavaScript:
const char = '\u52D9';
console.log(char); // Output: 務
Java:
char c = '\u52D9';
System.out.println(c); // Output: 務
JSON:
{"text": "\u52D9"} // Value: 務
Python:
char = '\u52D9'
print(char) # Output: 務
Perl:
my $char = "\x{52D9}";
print $char; # Output: 務
PHP:
$char = "\x{52D9}";
echo $char; // Output: 務
Ruby:
char = "\u{52D9}"
puts char # Output: 務
Rust:
let c = '\u{52D9}';
println!("{}", c); // Output: 務
Go:
char := '\u52D9'
fmt.Printf("%c\n", char) // Output: 務
CSS:
/* CSS content property */
.element::before {
content: "\0052D9"; /* 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%8B%99
MD5:
2d3f425ccdfb33ed690eb17cd492e80e
SHA1:
4a61b43d21a7269bf91711b4a32ececf4a34560e
Base64:
5YuZ