C:
char c = '\u50F1';
printf("%c\n", c); // Output: 僱
JavaScript:
const char = '\u50F1';
console.log(char); // Output: 僱
Java:
char c = '\u50F1';
System.out.println(c); // Output: 僱
JSON:
{"text": "\u50F1"} // Value: 僱
Python:
char = '\u50F1'
print(char) # Output: 僱
Perl:
my $char = "\x{50F1}";
print $char; # Output: 僱
PHP:
$char = "\x{50F1}";
echo $char; // Output: 僱
Ruby:
char = "\u{50F1}"
puts char # Output: 僱
Rust:
let c = '\u{50F1}';
println!("{}", c); // Output: 僱
Go:
char := '\u50F1'
fmt.Printf("%c\n", char) // Output: 僱
CSS:
/* CSS content property */
.element::before {
content: "\0050F1"; /* 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%83%B1
MD5:
4dca79ea99aa02668fbf94e1fa5045dd
SHA1:
a5ccca6a8fc6599b871b6ee203d24b0ae1ed82ed
Base64:
5YOx