C:
char c = '\u0022';
printf("%c\n", c); // Output: "
JavaScript:
const char = '\u0022';
console.log(char); // Output: "
Java:
char c = '\u0022';
System.out.println(c); // Output: "
JSON:
{"text": "\u0022"} // Value: "
Python:
char = '\u0022'
print(char) # Output: "
Perl:
my $char = "\x{0022}";
print $char; # Output: "
PHP:
$char = "\x{0022}";
echo $char; // Output: "
Ruby:
char = "\u{0022}"
puts char # Output: "
Rust:
let c = '\u{22}';
println!("{}", c); // Output: "
Go:
char := '\u0022'
fmt.Printf("%c\n", char) // Output: "
CSS:
/* CSS content property */
.element::before {
content: "\000022"; /* 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=%22
MD5:
b15835f133ff2e27c7cb28117bfae8f4
SHA1:
2ace62c1befa19e3ea37dd52be9f6d508c5163e6
Base64:
Ig==