C:
char c = '\u7523';
printf("%c\n", c); // Output: 産
JavaScript:
const char = '\u7523';
console.log(char); // Output: 産
Java:
char c = '\u7523';
System.out.println(c); // Output: 産
JSON:
{"text": "\u7523"} // Value: 産
Python:
char = '\u7523'
print(char) # Output: 産
Perl:
my $char = "\x{7523}";
print $char; # Output: 産
PHP:
$char = "\x{7523}";
echo $char; // Output: 産
Ruby:
char = "\u{7523}"
puts char # Output: 産
Rust:
let c = '\u{7523}';
println!("{}", c); // Output: 産
Go:
char := '\u7523'
fmt.Printf("%c\n", char) // Output: 産
CSS:
/* CSS content property */
.element::before {
content: "\007523"; /* 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%A3
MD5:
761ab600e75d33d3de2a6e9e6a2e71ba
SHA1:
08d57eaeb7256ecc9913a4ab55e9150d57ac2ecc
Base64:
55Sj