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