Unicode Finder

"⤉" U+2909(UPWARDS ARROW WITH HORIZONTAL STROKE)

U+2909
Block Name
Supplemental Arrows-B
Name
UPWARDS ARROW WITH HORIZONTAL STROKE

Programming

C
\u2909
JavaScript
\u2909
Java
\u2909
Json
\u2909
Python
\u2909
Perl
\x{2909}
PHP
\x{2909}
Ruby
\u{2909}
Rust
\u{2909}
Go
\u2909

Web

CSS
\002909
HtmlDecimal
⤉
HtmlHexadecimal
⤉
Url
%E2%A4%89

Code

MD5
76943a52584a7293a215d254411f8ba8
Sha1
d296adc519cf8ac653d1fc4471db0c174199af55
Base64
4qSJ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2909';
console.log(char);  // Output: ⤉

Java:

char c = '\u2909';
System.out.println(c);  // Output: ⤉

JSON:

{"text": "\u2909"}  // Value: ⤉

Python:

char = '\u2909'
print(char)  # Output: ⤉

Perl:

my $char = "\x{2909}";
print $char;  # Output: ⤉

PHP:

$char = "\x{2909}";
echo $char;  // Output: ⤉

Ruby:

char = "\u{2909}"
puts char  # Output: ⤉

Rust:

let c = '\u{2909}';
println!("{}", c);  // Output: ⤉

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002909";  /* Display: ⤉ */
}

HTML Decimal:

<p>HTML decimal: &#10505;</p>  <!-- Display: ⤉ -->

HTML Hexadecimal:

<p>HTML hex: &#x2909;</p>  <!-- Display: ⤉ -->

URL Encoding:

// ⤉ URL encoding
https://unicodefinder.com/search.php?query=%E2%A4%89

Encodings

MD5:

76943a52584a7293a215d254411f8ba8

SHA1:

d296adc519cf8ac653d1fc4471db0c174199af55

Base64:

4qSJ