C:
char c = '\u5370';
printf("%c\n", c); // Output: 印
JavaScript:
const char = '\u5370';
console.log(char); // Output: 印
Java:
char c = '\u5370';
System.out.println(c); // Output: 印
JSON:
{"text": "\u5370"} // Value: 印
Python:
char = '\u5370'
print(char) # Output: 印
Perl:
my $char = "\x{5370}";
print $char; # Output: 印
PHP:
$char = "\x{5370}";
echo $char; // Output: 印
Ruby:
char = "\u{5370}"
puts char # Output: 印
Rust:
let c = '\u{5370}';
println!("{}", c); // Output: 印
Go:
char := '\u5370'
fmt.Printf("%c\n", char) // Output: 印
CSS:
/* CSS content property */
.element::before {
content: "\005370"; /* 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%8D%B0
MD5:
92ab76e19e0d93b01e85067e06ee63bb
SHA1:
50c9aa8612bc8594dc095ff7aabff3410fecc718
Base64:
5Y2w