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