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