Unicode Finder

"⟞" U+27DE(LONG LEFT TACK)

U+27DE
Block Name
Miscellaneous Mathematical Symbols-A
Name
LONG LEFT TACK

Programming

C
\u27DE
JavaScript
\u27DE
Java
\u27DE
Json
\u27DE
Python
\u27DE
Perl
\x{27DE}
PHP
\x{27DE}
Ruby
\u{27DE}
Rust
\u{27DE}
Go
\u27DE

Web

CSS
\0027DE
HtmlDecimal
⟞
HtmlHexadecimal
⟞
Url
%E2%9F%9E

Code

MD5
34ed0a0c14eddd49960d0adfcc39189e
Sha1
d25240dec0a073a78570987cd33e9596c4f5aeb9
Base64
4p+e

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u27DE';
console.log(char);  // Output: ⟞

Java:

char c = '\u27DE';
System.out.println(c);  // Output: ⟞

JSON:

{"text": "\u27DE"}  // Value: ⟞

Python:

char = '\u27DE'
print(char)  # Output: ⟞

Perl:

my $char = "\x{27DE}";
print $char;  # Output: ⟞

PHP:

$char = "\x{27DE}";
echo $char;  // Output: ⟞

Ruby:

char = "\u{27DE}"
puts char  # Output: ⟞

Rust:

let c = '\u{27DE}';
println!("{}", c);  // Output: ⟞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0027DE";  /* Display: ⟞ */
}

HTML Decimal:

<p>HTML decimal: &#10206;</p>  <!-- Display: ⟞ -->

HTML Hexadecimal:

<p>HTML hex: &#x27DE;</p>  <!-- Display: ⟞ -->

URL Encoding:

// ⟞ URL encoding
https://unicodefinder.com/search.php?query=%E2%9F%9E

Encodings

MD5:

34ed0a0c14eddd49960d0adfcc39189e

SHA1:

d25240dec0a073a78570987cd33e9596c4f5aeb9

Base64:

4p+e