Unicode Finder

"⟋" U+27CB(MATHEMATICAL RISING DIAGONAL)

U+27CB
Block Name
Miscellaneous Mathematical Symbols-A
Name
MATHEMATICAL RISING DIAGONAL

Programming

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

Web

CSS
\0027CB
HtmlDecimal
⟋
HtmlHexadecimal
⟋
Url
%E2%9F%8B

Code

MD5
5b3adeaf3552191fefcb21d5ce69327e
Sha1
3929e3bd8fd165ba03a125fc942f3655ebe01362
Base64
4p+L

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u27CB';
console.log(char);  // Output: ⟋

Java:

char c = '\u27CB';
System.out.println(c);  // Output: ⟋

JSON:

{"text": "\u27CB"}  // Value: ⟋

Python:

char = '\u27CB'
print(char)  # Output: ⟋

Perl:

my $char = "\x{27CB}";
print $char;  # Output: ⟋

PHP:

$char = "\x{27CB}";
echo $char;  // Output: ⟋

Ruby:

char = "\u{27CB}"
puts char  # Output: ⟋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10187;</p>  <!-- Display: ⟋ -->

HTML Hexadecimal:

<p>HTML hex: &#x27CB;</p>  <!-- Display: ⟋ -->

URL Encoding:

// ⟋ URL encoding
https://unicodefinder.com/search.php?query=%E2%9F%8B

Encodings

MD5:

5b3adeaf3552191fefcb21d5ce69327e

SHA1:

3929e3bd8fd165ba03a125fc942f3655ebe01362

Base64:

4p+L