C:
char c = '\u7522';
printf("%c\n", c); // Output: 產
JavaScript:
const char = '\u7522';
console.log(char); // Output: 產
Java:
char c = '\u7522';
System.out.println(c); // Output: 產
JSON:
{"text": "\u7522"} // Value: 產
Python:
char = '\u7522'
print(char) # Output: 產
Perl:
my $char = "\x{7522}";
print $char; # Output: 產
PHP:
$char = "\x{7522}";
echo $char; // Output: 產
Ruby:
char = "\u{7522}"
puts char # Output: 產
Rust:
let c = '\u{7522}';
println!("{}", c); // Output: 產
Go:
char := '\u7522'
fmt.Printf("%c\n", char) // Output: 產
CSS:
/* CSS content property */
.element::before {
content: "\007522"; /* 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%A2
MD5:
69f5bdf9c25833193135808a1c1912f2
SHA1:
5ede8a3c323fd36543ba7580fa3cc753b237f4f2
Base64:
55Si