Unicode Finder

"⇺" U+21FA(LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE)

U+21FA
שם בלוק
Arrows
שם
LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE

Programming

C
\u21FA
JavaScript
\u21FA
Java
\u21FA
Json
\u21FA
Python
\u21FA
Perl
\x{21FA}
PHP
\x{21FA}
Ruby
\u{21FA}
Rust
\u{21FA}
Go
\u21FA

Web

CSS
\0021FA
HtmlDecimal
⇺
HtmlHexadecimal
⇺
Url
%E2%87%BA

Code

MD5
9db300ff4ca2c2eead9153e9e8d7edff
Sha1
de9c81aa786db8541df7dfa1c856a2e968e002ef
Base64
4oe6

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u21FA';
console.log(char);  // Output: ⇺

Java:

char c = '\u21FA';
System.out.println(c);  // Output: ⇺

JSON:

{"text": "\u21FA"}  // Value: ⇺

Python:

char = '\u21FA'
print(char)  # Output: ⇺

Perl:

my $char = "\x{21FA}";
print $char;  # Output: ⇺

PHP:

$char = "\x{21FA}";
echo $char;  // Output: ⇺

Ruby:

char = "\u{21FA}"
puts char  # Output: ⇺

Rust:

let c = '\u{21FA}';
println!("{}", c);  // Output: ⇺

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0021FA";  /* Display: ⇺ */
}

HTML Decimal:

<p>HTML decimal: &#8698;</p>  <!-- Display: ⇺ -->

HTML Hexadecimal:

<p>HTML hex: &#x21FA;</p>  <!-- Display: ⇺ -->

URL Encoding:

// ⇺ URL encoding
https://unicodefinder.com/search.php?query=%E2%87%BA

Encodings

MD5:

9db300ff4ca2c2eead9153e9e8d7edff

SHA1:

de9c81aa786db8541df7dfa1c856a2e968e002ef

Base64:

4oe6