C:
char c = '\u5984';
printf("%c\n", c); // Output: 妄
JavaScript:
const char = '\u5984';
console.log(char); // Output: 妄
Java:
char c = '\u5984';
System.out.println(c); // Output: 妄
JSON:
{"text": "\u5984"} // Value: 妄
Python:
char = '\u5984'
print(char) # Output: 妄
Perl:
my $char = "\x{5984}";
print $char; # Output: 妄
PHP:
$char = "\x{5984}";
echo $char; // Output: 妄
Ruby:
char = "\u{5984}"
puts char # Output: 妄
Rust:
let c = '\u{5984}';
println!("{}", c); // Output: 妄
Go:
char := '\u5984'
fmt.Printf("%c\n", char) // Output: 妄
CSS:
/* CSS content property */
.element::before {
content: "\005984"; /* 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%A6%84
MD5:
bbd942a7c064e41981d772da672629d7
SHA1:
32af7b72f5473d04b56c8def9f4bcf5f897fadcb
Base64:
5aaE