C:
char c = '\u5925';
printf("%c\n", c); // Output: 夥
JavaScript:
const char = '\u5925';
console.log(char); // Output: 夥
Java:
char c = '\u5925';
System.out.println(c); // Output: 夥
JSON:
{"text": "\u5925"} // Value: 夥
Python:
char = '\u5925'
print(char) # Output: 夥
Perl:
my $char = "\x{5925}";
print $char; # Output: 夥
PHP:
$char = "\x{5925}";
echo $char; // Output: 夥
Ruby:
char = "\u{5925}"
puts char # Output: 夥
Rust:
let c = '\u{5925}';
println!("{}", c); // Output: 夥
Go:
char := '\u5925'
fmt.Printf("%c\n", char) // Output: 夥
CSS:
/* CSS content property */
.element::before {
content: "\005925"; /* 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%A4%A5
MD5:
526ca60a5ff1f0a5b6b7eca2a16c0494
SHA1:
c302452b71b1346800cf755acd5a312f0594a49c
Base64:
5aSl