C:
char c = '\u6389';
printf("%c\n", c); // Output: 掉
JavaScript:
const char = '\u6389';
console.log(char); // Output: 掉
Java:
char c = '\u6389';
System.out.println(c); // Output: 掉
JSON:
{"text": "\u6389"} // Value: 掉
Python:
char = '\u6389'
print(char) # Output: 掉
Perl:
my $char = "\x{6389}";
print $char; # Output: 掉
PHP:
$char = "\x{6389}";
echo $char; // Output: 掉
Ruby:
char = "\u{6389}"
puts char # Output: 掉
Rust:
let c = '\u{6389}';
println!("{}", c); // Output: 掉
Go:
char := '\u6389'
fmt.Printf("%c\n", char) // Output: 掉
CSS:
/* CSS content property */
.element::before {
content: "\006389"; /* 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=%E6%8E%89
MD5:
0deca41f7d1b806d5539aed5ba33d28d
SHA1:
dd73235331a6a9d68ba660e30961c2b2e9cdf0a2
Base64:
5o6J