C:
char c = '\u5642';
printf("%c\n", c); // Output: 噂
JavaScript:
const char = '\u5642';
console.log(char); // Output: 噂
Java:
char c = '\u5642';
System.out.println(c); // Output: 噂
JSON:
{"text": "\u5642"} // Value: 噂
Python:
char = '\u5642'
print(char) # Output: 噂
Perl:
my $char = "\x{5642}";
print $char; # Output: 噂
PHP:
$char = "\x{5642}";
echo $char; // Output: 噂
Ruby:
char = "\u{5642}"
puts char # Output: 噂
Rust:
let c = '\u{5642}';
println!("{}", c); // Output: 噂
Go:
char := '\u5642'
fmt.Printf("%c\n", char) // Output: 噂
CSS:
/* CSS content property */
.element::before {
content: "\005642"; /* 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%99%82
MD5:
87ec1427c8e5b306fd4011fcf2579562
SHA1:
48fd5ede786c142868d93a268f16d9c98ba8c015
Base64:
5ZmC