Unicode Finder

"๐Ÿ”ผ" U+1F53C(UP-POINTING SMALL RED TRIANGLE)

๐Ÿ”ผ
U+1F53C
Block Name
Miscellaneous Symbols and Pictographs
Name
UP-POINTING SMALL RED TRIANGLE

Programming

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

Web

CSS
\01F53C
HtmlDecimal
🔼
HtmlHexadecimal
🔼
Url
%F0%9F%94%BC

Code

MD5
45adbcb9357cfce33f28db6a786c8531
Sha1
b31c50210d227702899b3e3d51244d97a93e2826
Base64
8J+UvA==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F53C"}  // Value: ๐Ÿ”ผ

Python:

char = '\u1F53C'
print(char)  # Output: ๐Ÿ”ผ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F53C}"
puts char  # Output: ๐Ÿ”ผ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

45adbcb9357cfce33f28db6a786c8531

SHA1:

b31c50210d227702899b3e3d51244d97a93e2826

Base64:

8J+UvA==