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