Unicode Finder

"“" U+201C(LEFT DOUBLE QUOTATION MARK)

U+201C
Назва Блоку
General Punctuation
Назва
LEFT DOUBLE QUOTATION MARK

Programming

C
\u201C
JavaScript
\u201C
Java
\u201C
Json
\u201C
Python
\u201C
Perl
\x{201C}
PHP
\x{201C}
Ruby
\u{201C}
Rust
\u{201C}
Go
\u201C

Web

CSS
\00201C
HtmlDecimal
“
HtmlHexadecimal
“
Url
%E2%80%9C

Code

MD5
3699ad8ab1969bd365181914e04f52eb
Sha1
54a985bdbf451a01f9df3386a00302de07904a22
Base64
4oCc

Приклади Використання

Programming Languages

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: “

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00201C";  /* Display: “ */
}

HTML Decimal:

<p>HTML decimal: &#8220;</p>  <!-- Display: “ -->

HTML Hexadecimal:

<p>HTML hex: &#x201C;</p>  <!-- Display: “ -->

URL Encoding:

// “ URL encoding
https://unicodefinder.com/search.php?query=%E2%80%9C

Encodings

MD5:

3699ad8ab1969bd365181914e04f52eb

SHA1:

54a985bdbf451a01f9df3386a00302de07904a22

Base64:

4oCc