C:
char c = '\u7533';
printf("%c\n", c); // Output: 申
JavaScript:
const char = '\u7533';
console.log(char); // Output: 申
Java:
char c = '\u7533';
System.out.println(c); // Output: 申
JSON:
{"text": "\u7533"} // Value: 申
Python:
char = '\u7533'
print(char) # Output: 申
Perl:
my $char = "\x{7533}";
print $char; # Output: 申
PHP:
$char = "\x{7533}";
echo $char; // Output: 申
Ruby:
char = "\u{7533}"
puts char # Output: 申
Rust:
let c = '\u{7533}';
println!("{}", c); // Output: 申
Go:
char := '\u7533'
fmt.Printf("%c\n", char) // Output: 申
CSS:
/* CSS content property */
.element::before {
content: "\007533"; /* 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=%E7%94%B3
MD5:
04d88acfe70b442ef89db6ba73126028
SHA1:
3b537544c4f5fd2dac96a2d55fe4ebe1ecd48642
Base64:
55Sz