Unicode Finder

"⍼" U+237C(RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW)

U+237C
Назва Блоку
Miscellaneous Technical
Назва
RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW

Programming

C
\u237C
JavaScript
\u237C
Java
\u237C
Json
\u237C
Python
\u237C
Perl
\x{237C}
PHP
\x{237C}
Ruby
\u{237C}
Rust
\u{237C}
Go
\u237C

Web

CSS
\00237C
HtmlDecimal
⍼
HtmlHexadecimal
⍼
Url
%E2%8D%BC

Code

MD5
84e1f41d75c047f14cffe956bb64d8c6
Sha1
e3a2d169302618b6d8af18b9982482d8bbf47cb2
Base64
4o28

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

Programming Languages

C:

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

JavaScript:

const char = '\u237C';
console.log(char);  // Output: ⍼

Java:

char c = '\u237C';
System.out.println(c);  // Output: ⍼

JSON:

{"text": "\u237C"}  // Value: ⍼

Python:

char = '\u237C'
print(char)  # Output: ⍼

Perl:

my $char = "\x{237C}";
print $char;  # Output: ⍼

PHP:

$char = "\x{237C}";
echo $char;  // Output: ⍼

Ruby:

char = "\u{237C}"
puts char  # Output: ⍼

Rust:

let c = '\u{237C}';
println!("{}", c);  // Output: ⍼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00237C";  /* Display: ⍼ */
}

HTML Decimal:

<p>HTML decimal: &#9084;</p>  <!-- Display: ⍼ -->

HTML Hexadecimal:

<p>HTML hex: &#x237C;</p>  <!-- Display: ⍼ -->

URL Encoding:

// ⍼ URL encoding
https://unicodefinder.com/search.php?query=%E2%8D%BC

Encodings

MD5:

84e1f41d75c047f14cffe956bb64d8c6

SHA1:

e3a2d169302618b6d8af18b9982482d8bbf47cb2

Base64:

4o28