C:
char c = '\u4F75';
printf("%c\n", c); // Output: 併
JavaScript:
const char = '\u4F75';
console.log(char); // Output: 併
Java:
char c = '\u4F75';
System.out.println(c); // Output: 併
JSON:
{"text": "\u4F75"} // Value: 併
Python:
char = '\u4F75'
print(char) # Output: 併
Perl:
my $char = "\x{4F75}";
print $char; # Output: 併
PHP:
$char = "\x{4F75}";
echo $char; // Output: 併
Ruby:
char = "\u{4F75}"
puts char # Output: 併
Rust:
let c = '\u{4F75}';
println!("{}", c); // Output: 併
Go:
char := '\u4F75'
fmt.Printf("%c\n", char) // Output: 併
CSS:
/* CSS content property */
.element::before {
content: "\004F75"; /* 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=%E4%BD%B5
MD5:
18008d77bc5e631640290809c2086cb7
SHA1:
4021d04d874edc3c50114f39e11e4a2024ac568a
Base64:
5L21