C:
char c = '\u9B50';
printf("%c\n", c); // Output: 魐
JavaScript:
const char = '\u9B50';
console.log(char); // Output: 魐
Java:
char c = '\u9B50';
System.out.println(c); // Output: 魐
JSON:
{"text": "\u9B50"} // Value: 魐
Python:
char = '\u9B50'
print(char) # Output: 魐
Perl:
my $char = "\x{9B50}";
print $char; # Output: 魐
PHP:
$char = "\x{9B50}";
echo $char; // Output: 魐
Ruby:
char = "\u{9B50}"
puts char # Output: 魐
Rust:
let c = '\u{9B50}';
println!("{}", c); // Output: 魐
Go:
char := '\u9B50'
fmt.Printf("%c\n", char) // Output: 魐
CSS:
/* CSS content property */
.element::before {
content: "\009B50"; /* 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=%E9%AD%90
MD5:
17ffe953e94a99349906a3c2aee6fb15
SHA1:
e9f5e6520a5420468e8b2b11a8d59f6e8a558804
Base64:
6a2Q