Unicode Finder

"⁅" U+2045(LEFT SQUARE BRACKET WITH QUILL)

U+2045
Назва Блоку
General Punctuation
Назва
LEFT SQUARE BRACKET WITH QUILL

Programming

C
\u2045
JavaScript
\u2045
Java
\u2045
Json
\u2045
Python
\u2045
Perl
\x{2045}
PHP
\x{2045}
Ruby
\u{2045}
Rust
\u{2045}
Go
\u2045

Web

CSS
\002045
HtmlDecimal
⁅
HtmlHexadecimal
⁅
Url
%E2%81%85

Code

MD5
8a1542eb8ba38599aa8a41ffe7ef9950
Sha1
4ffeab97eb5eb8289d2522d3c41eff5f72b66e6f
Base64
4oGF

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

Programming Languages

C:

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

JavaScript:

const char = '\u2045';
console.log(char);  // Output: ⁅

Java:

char c = '\u2045';
System.out.println(c);  // Output: ⁅

JSON:

{"text": "\u2045"}  // Value: ⁅

Python:

char = '\u2045'
print(char)  # Output: ⁅

Perl:

my $char = "\x{2045}";
print $char;  # Output: ⁅

PHP:

$char = "\x{2045}";
echo $char;  // Output: ⁅

Ruby:

char = "\u{2045}"
puts char  # Output: ⁅

Rust:

let c = '\u{2045}';
println!("{}", c);  // Output: ⁅

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002045";  /* Display: ⁅ */
}

HTML Decimal:

<p>HTML decimal: &#8261;</p>  <!-- Display: ⁅ -->

HTML Hexadecimal:

<p>HTML hex: &#x2045;</p>  <!-- Display: ⁅ -->

URL Encoding:

// ⁅ URL encoding
https://unicodefinder.com/search.php?query=%E2%81%85

Encodings

MD5:

8a1542eb8ba38599aa8a41ffe7ef9950

SHA1:

4ffeab97eb5eb8289d2522d3c41eff5f72b66e6f

Base64:

4oGF