Unicode Finder

"⟫" U+27EB(MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET)

U+27EB
Block Name
Miscellaneous Mathematical Symbols-A
Name
MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET

Programming

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

Web

CSS
\0027EB
HtmlDecimal
⟫
HtmlHexadecimal
⟫
Url
%E2%9F%AB

Code

MD5
6170975eb4afbaf0c87de8ab583b1092
Sha1
e17b35638c7a4ad8dbbb88c281fbf4c5e9759a94
Base64
4p+r

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u27EB';
console.log(char);  // Output: ⟫

Java:

char c = '\u27EB';
System.out.println(c);  // Output: ⟫

JSON:

{"text": "\u27EB"}  // Value: ⟫

Python:

char = '\u27EB'
print(char)  # Output: ⟫

Perl:

my $char = "\x{27EB}";
print $char;  # Output: ⟫

PHP:

$char = "\x{27EB}";
echo $char;  // Output: ⟫

Ruby:

char = "\u{27EB}"
puts char  # Output: ⟫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10219;</p>  <!-- Display: ⟫ -->

HTML Hexadecimal:

<p>HTML hex: &#x27EB;</p>  <!-- Display: ⟫ -->

URL Encoding:

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

Encodings

MD5:

6170975eb4afbaf0c87de8ab583b1092

SHA1:

e17b35638c7a4ad8dbbb88c281fbf4c5e9759a94

Base64:

4p+r