C:
char c = '\u6625';
printf("%c\n", c); // Output: 春
JavaScript:
const char = '\u6625';
console.log(char); // Output: 春
Java:
char c = '\u6625';
System.out.println(c); // Output: 春
JSON:
{"text": "\u6625"} // Value: 春
Python:
char = '\u6625'
print(char) # Output: 春
Perl:
my $char = "\x{6625}";
print $char; # Output: 春
PHP:
$char = "\x{6625}";
echo $char; // Output: 春
Ruby:
char = "\u{6625}"
puts char # Output: 春
Rust:
let c = '\u{6625}';
println!("{}", c); // Output: 春
Go:
char := '\u6625'
fmt.Printf("%c\n", char) // Output: 春
CSS:
/* CSS content property */
.element::before {
content: "\006625"; /* 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=%E6%98%A5
MD5:
dd201928f77d0211c82423fa4a93cf78
SHA1:
3e450648252d8bbde3ec5cb3b62002be9f3bdc49
Base64:
5pil