C:
char c = '\u7540';
printf("%c\n", c); // Output: 畀
JavaScript:
const char = '\u7540';
console.log(char); // Output: 畀
Java:
char c = '\u7540';
System.out.println(c); // Output: 畀
JSON:
{"text": "\u7540"} // Value: 畀
Python:
char = '\u7540'
print(char) # Output: 畀
Perl:
my $char = "\x{7540}";
print $char; # Output: 畀
PHP:
$char = "\x{7540}";
echo $char; // Output: 畀
Ruby:
char = "\u{7540}"
puts char # Output: 畀
Rust:
let c = '\u{7540}';
println!("{}", c); // Output: 畀
Go:
char := '\u7540'
fmt.Printf("%c\n", char) // Output: 畀
CSS:
/* CSS content property */
.element::before {
content: "\007540"; /* 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=%E7%95%80
MD5:
29cc12760e54560e39674a98658eaac1
SHA1:
b6a7177bd07ff40477b712d4e93b44760034baef
Base64:
55WA