C:
char c = '\u7562';
printf("%c\n", c); // Output: 畢
JavaScript:
const char = '\u7562';
console.log(char); // Output: 畢
Java:
char c = '\u7562';
System.out.println(c); // Output: 畢
JSON:
{"text": "\u7562"} // Value: 畢
Python:
char = '\u7562'
print(char) # Output: 畢
Perl:
my $char = "\x{7562}";
print $char; # Output: 畢
PHP:
$char = "\x{7562}";
echo $char; // Output: 畢
Ruby:
char = "\u{7562}"
puts char # Output: 畢
Rust:
let c = '\u{7562}';
println!("{}", c); // Output: 畢
Go:
char := '\u7562'
fmt.Printf("%c\n", char) // Output: 畢
CSS:
/* CSS content property */
.element::before {
content: "\007562"; /* 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%A2
MD5:
b8b606adcc9a2e57f10248fb699ad2fb
SHA1:
8c6d4850ad0a5bc3de203055e7fba0e66f22d989
Base64:
55Wi