C:
char c = '\u6383';
printf("%c\n", c); // Output: 掃
JavaScript:
const char = '\u6383';
console.log(char); // Output: 掃
Java:
char c = '\u6383';
System.out.println(c); // Output: 掃
JSON:
{"text": "\u6383"} // Value: 掃
Python:
char = '\u6383'
print(char) # Output: 掃
Perl:
my $char = "\x{6383}";
print $char; # Output: 掃
PHP:
$char = "\x{6383}";
echo $char; // Output: 掃
Ruby:
char = "\u{6383}"
puts char # Output: 掃
Rust:
let c = '\u{6383}';
println!("{}", c); // Output: 掃
Go:
char := '\u6383'
fmt.Printf("%c\n", char) // Output: 掃
CSS:
/* CSS content property */
.element::before {
content: "\006383"; /* 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%83
MD5:
64551f3b1ed21ec5176ca0dc6898b52e
SHA1:
aa04cb353ca34a3f0779c9779707d66a0135ec5c
Base64:
5o6D