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