C:
char c = '\u7121';
printf("%c\n", c); // Output: 無
JavaScript:
const char = '\u7121';
console.log(char); // Output: 無
Java:
char c = '\u7121';
System.out.println(c); // Output: 無
JSON:
{"text": "\u7121"} // Value: 無
Python:
char = '\u7121'
print(char) # Output: 無
Perl:
my $char = "\x{7121}";
print $char; # Output: 無
PHP:
$char = "\x{7121}";
echo $char; // Output: 無
Ruby:
char = "\u{7121}"
puts char # Output: 無
Rust:
let c = '\u{7121}';
println!("{}", c); // Output: 無
Go:
char := '\u7121'
fmt.Printf("%c\n", char) // Output: 無
CSS:
/* CSS content property */
.element::before {
content: "\007121"; /* 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=%E7%84%A1
MD5:
9e108af5d037d98320ccec0ce410a874
SHA1:
9ecc4ea4aa06e7adf959f155385af23431bfcf7a
Base64:
54Sh