Unicode Finder

"🡳" U+1F873(WIDE-HEADED DOWNWARDS MEDIUM BARB ARROW)

🡳
U+1F873
Bloknaam
Unknown Block
Naam
WIDE-HEADED DOWNWARDS MEDIUM BARB ARROW

Programming

C
\u1F873
JavaScript
\u1F873
Java
\u1F873
Json
\u1F873
Python
\u1F873
Perl
\x{1F873}
PHP
\x{1F873}
Ruby
\u{1F873}
Rust
\u{1F873}
Go
\u1F873

Web

CSS
\01F873
HtmlDecimal
🡳
HtmlHexadecimal
🡳
Url
%F0%9F%A1%B3

Code

MD5
647905f51654f3195789c8f0509c6fc1
Sha1
71d42e493cc99390564c23ecdd74ec311d221753
Base64
8J+hsw==

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u1F873';
console.log(char);  // Output: 🡳

Java:

char c = '\u1F873';
System.out.println(c);  // Output: 🡳

JSON:

{"text": "\u1F873"}  // Value: 🡳

Python:

char = '\u1F873'
print(char)  # Output: 🡳

Perl:

my $char = "\x{1F873}";
print $char;  # Output: 🡳

PHP:

$char = "\x{1F873}";
echo $char;  // Output: 🡳

Ruby:

char = "\u{1F873}"
puts char  # Output: 🡳

Rust:

let c = '\u{1F873}';
println!("{}", c);  // Output: 🡳

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F873";  /* Display: 🡳 */
}

HTML Decimal:

<p>HTML decimal: &#129139;</p>  <!-- Display: 🡳 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F873;</p>  <!-- Display: 🡳 -->

URL Encoding:

// 🡳 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%A1%B3

Encodings

MD5:

647905f51654f3195789c8f0509c6fc1

SHA1:

71d42e493cc99390564c23ecdd74ec311d221753

Base64:

8J+hsw==