Unicode Finder

"๐Ÿ”ป" U+1F53B(DOWN-POINTING RED TRIANGLE)

๐Ÿ”ป
U+1F53B
Block Name
Miscellaneous Symbols and Pictographs
Name
DOWN-POINTING RED TRIANGLE

Programming

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

Web

CSS
\01F53B
HtmlDecimal
🔻
HtmlHexadecimal
🔻
Url
%F0%9F%94%BB

Code

MD5
6a9fcbcc69060c851c71aa0939ea29f9
Sha1
f60814b4be3025374692b076c021210547d14928
Base64
8J+Uuw==

Usage Examples

Programming Languages

C:

char c = '\u1F53B';
printf("%c\n", c);  // Output: ๐Ÿ”ป

JavaScript:

const char = '\u1F53B';
console.log(char);  // Output: ๐Ÿ”ป

Java:

char c = '\u1F53B';
System.out.println(c);  // Output: ๐Ÿ”ป

JSON:

{"text": "\u1F53B"}  // Value: ๐Ÿ”ป

Python:

char = '\u1F53B'
print(char)  # Output: ๐Ÿ”ป

Perl:

my $char = "\x{1F53B}";
print $char;  # Output: ๐Ÿ”ป

PHP:

$char = "\x{1F53B}";
echo $char;  // Output: ๐Ÿ”ป

Ruby:

char = "\u{1F53B}"
puts char  # Output: ๐Ÿ”ป

Rust:

let c = '\u{1F53B}';
println!("{}", c);  // Output: ๐Ÿ”ป

Go:

char := '\u1F53B'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ”ป

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F53B";  /* Display: ๐Ÿ”ป */
}

HTML Decimal:

<p>HTML decimal: &#128315;</p>  <!-- Display: ๐Ÿ”ป -->

HTML Hexadecimal:

<p>HTML hex: &#x1F53B;</p>  <!-- Display: ๐Ÿ”ป -->

URL Encoding:

// ๐Ÿ”ป URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%94%BB

Encodings

MD5:

6a9fcbcc69060c851c71aa0939ea29f9

SHA1:

f60814b4be3025374692b076c021210547d14928

Base64:

8J+Uuw==