C:
char c = '\u5408';
printf("%c\n", c); // Output: 合
JavaScript:
const char = '\u5408';
console.log(char); // Output: 合
Java:
char c = '\u5408';
System.out.println(c); // Output: 合
JSON:
{"text": "\u5408"} // Value: 合
Python:
char = '\u5408'
print(char) # Output: 合
Perl:
my $char = "\x{5408}";
print $char; # Output: 合
PHP:
$char = "\x{5408}";
echo $char; // Output: 合
Ruby:
char = "\u{5408}"
puts char # Output: 合
Rust:
let c = '\u{5408}';
println!("{}", c); // Output: 合
Go:
char := '\u5408'
fmt.Printf("%c\n", char) // Output: 合
CSS:
/* CSS content property */
.element::before {
content: "\005408"; /* 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%90%88
MD5:
c5ef4ac43df718547291bc2974f54c8d
SHA1:
1cb63f35c87870d422ef290c25a765f1b7822785
Base64:
5ZCI