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