C:
char c = '\u5080';
printf("%c\n", c); // Output: 傀
JavaScript:
const char = '\u5080';
console.log(char); // Output: 傀
Java:
char c = '\u5080';
System.out.println(c); // Output: 傀
JSON:
{"text": "\u5080"} // Value: 傀
Python:
char = '\u5080'
print(char) # Output: 傀
Perl:
my $char = "\x{5080}";
print $char; # Output: 傀
PHP:
$char = "\x{5080}";
echo $char; // Output: 傀
Ruby:
char = "\u{5080}"
puts char # Output: 傀
Rust:
let c = '\u{5080}';
println!("{}", c); // Output: 傀
Go:
char := '\u5080'
fmt.Printf("%c\n", char) // Output: 傀
CSS:
/* CSS content property */
.element::before {
content: "\005080"; /* 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%80
MD5:
efbb9d6e1f8838beb893252922c43549
SHA1:
466e27ff233325016741b71d6ec6425ec3f88108
Base64:
5YKA