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