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