C:
char c = '\u50C0';
printf("%c\n", c); // Output: 僀
JavaScript:
const char = '\u50C0';
console.log(char); // Output: 僀
Java:
char c = '\u50C0';
System.out.println(c); // Output: 僀
JSON:
{"text": "\u50C0"} // Value: 僀
Python:
char = '\u50C0'
print(char) # Output: 僀
Perl:
my $char = "\x{50C0}";
print $char; # Output: 僀
PHP:
$char = "\x{50C0}";
echo $char; // Output: 僀
Ruby:
char = "\u{50C0}"
puts char # Output: 僀
Rust:
let c = '\u{50C0}';
println!("{}", c); // Output: 僀
Go:
char := '\u50C0'
fmt.Printf("%c\n", char) // Output: 僀
CSS:
/* CSS content property */
.element::before {
content: "\0050C0"; /* 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%83%80
MD5:
6e0ff7fa972858737746e8978aeb842b
SHA1:
e13edbbd6431b724a4fb0de7d39a5a3d3b8940f8
Base64:
5YOA