C:
char c = '\u201C';
printf("%c\n", c); // Output: “
JavaScript:
const char = '\u201C';
console.log(char); // Output: “
Java:
char c = '\u201C';
System.out.println(c); // Output: “
JSON:
{"text": "\u201C"} // Value: “
Python:
char = '\u201C'
print(char) # Output: “
Perl:
my $char = "\x{201C}";
print $char; # Output: “
PHP:
$char = "\x{201C}";
echo $char; // Output: “
Ruby:
char = "\u{201C}"
puts char # Output: “
Rust:
let c = '\u{201C}';
println!("{}", c); // Output: “
Go:
char := '\u201C'
fmt.Printf("%c\n", char) // Output: “
CSS:
/* CSS content property */
.element::before {
content: "\00201C"; /* 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=%E2%80%9C
MD5:
3699ad8ab1969bd365181914e04f52eb
SHA1:
54a985bdbf451a01f9df3386a00302de07904a22
Base64:
4oCc