C:
char c = '\u53F3';
printf("%c\n", c); // Output: 右
JavaScript:
const char = '\u53F3';
console.log(char); // Output: 右
Java:
char c = '\u53F3';
System.out.println(c); // Output: 右
JSON:
{"text": "\u53F3"} // Value: 右
Python:
char = '\u53F3'
print(char) # Output: 右
Perl:
my $char = "\x{53F3}";
print $char; # Output: 右
PHP:
$char = "\x{53F3}";
echo $char; // Output: 右
Ruby:
char = "\u{53F3}"
puts char # Output: 右
Rust:
let c = '\u{53F3}';
println!("{}", c); // Output: 右
Go:
char := '\u53F3'
fmt.Printf("%c\n", char) // Output: 右
CSS:
/* CSS content property */
.element::before {
content: "\0053F3"; /* 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%8F%B3
MD5:
4d9c32c23df5d234e629c922c58d8e12
SHA1:
851cdd609190b0acc914091b9b7c1a0d32838c4d
Base64:
5Y+z