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