Unicode Finder

"⸜" U+2E1C(LEFT LOW PARAPHRASE BRACKET)

U+2E1C
Block Name
Supplemental Punctuation
Name
LEFT LOW PARAPHRASE BRACKET

Programming

C
\u2E1C
JavaScript
\u2E1C
Java
\u2E1C
Json
\u2E1C
Python
\u2E1C
Perl
\x{2E1C}
PHP
\x{2E1C}
Ruby
\u{2E1C}
Rust
\u{2E1C}
Go
\u2E1C

Web

CSS
\002E1C
HtmlDecimal
⸜
HtmlHexadecimal
⸜
Url
%E2%B8%9C

Code

MD5
fb2bb9f4bf70a223978b52ad15c66a4c
Sha1
8ba227a76e8ef1f2a3f48d9bcf3da39cafa8de1b
Base64
4ric

Usage Examples

Programming Languages

C:

char c = '\u2E1C';
printf("%c\n", c);  // Output: ⸜

JavaScript:

const char = '\u2E1C';
console.log(char);  // Output: ⸜

Java:

char c = '\u2E1C';
System.out.println(c);  // Output: ⸜

JSON:

{"text": "\u2E1C"}  // Value: ⸜

Python:

char = '\u2E1C'
print(char)  # Output: ⸜

Perl:

my $char = "\x{2E1C}";
print $char;  # Output: ⸜

PHP:

$char = "\x{2E1C}";
echo $char;  // Output: ⸜

Ruby:

char = "\u{2E1C}"
puts char  # Output: ⸜

Rust:

let c = '\u{2E1C}';
println!("{}", c);  // Output: ⸜

Go:

char := '\u2E1C'
fmt.Printf("%c\n", char)  // Output: ⸜

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002E1C";  /* Display: ⸜ */
}

HTML Decimal:

<p>HTML decimal: &#11804;</p>  <!-- Display: ⸜ -->

HTML Hexadecimal:

<p>HTML hex: &#x2E1C;</p>  <!-- Display: ⸜ -->

URL Encoding:

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

Encodings

MD5:

fb2bb9f4bf70a223978b52ad15c66a4c

SHA1:

8ba227a76e8ef1f2a3f48d9bcf3da39cafa8de1b

Base64:

4ric