Unicode Finder

"๐Ÿ–Œ" U+1F58C(LOWER LEFT PAINTBRUSH)

๐Ÿ–Œ
U+1F58C
Block Name
Miscellaneous Symbols and Pictographs
Name
LOWER LEFT PAINTBRUSH

Programming

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

Web

CSS
\01F58C
HtmlDecimal
🖌
HtmlHexadecimal
🖌
Url
%F0%9F%96%8C

Code

MD5
aa346b3514aa2a1e72cf2b0745117f27
Sha1
d609493ab76e5a481723c3f6aaeb5c234fe1c666
Base64
8J+WjA==

Usage Examples

Programming Languages

C:

char c = '\u1F58C';
printf("%c\n", c);  // Output: ๐Ÿ–Œ

JavaScript:

const char = '\u1F58C';
console.log(char);  // Output: ๐Ÿ–Œ

Java:

char c = '\u1F58C';
System.out.println(c);  // Output: ๐Ÿ–Œ

JSON:

{"text": "\u1F58C"}  // Value: ๐Ÿ–Œ

Python:

char = '\u1F58C'
print(char)  # Output: ๐Ÿ–Œ

Perl:

my $char = "\x{1F58C}";
print $char;  # Output: ๐Ÿ–Œ

PHP:

$char = "\x{1F58C}";
echo $char;  // Output: ๐Ÿ–Œ

Ruby:

char = "\u{1F58C}"
puts char  # Output: ๐Ÿ–Œ

Rust:

let c = '\u{1F58C}';
println!("{}", c);  // Output: ๐Ÿ–Œ

Go:

char := '\u1F58C'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ–Œ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F58C";  /* Display: ๐Ÿ–Œ */
}

HTML Decimal:

<p>HTML decimal: &#128396;</p>  <!-- Display: ๐Ÿ–Œ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F58C;</p>  <!-- Display: ๐Ÿ–Œ -->

URL Encoding:

// ๐Ÿ–Œ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%96%8C

Encodings

MD5:

aa346b3514aa2a1e72cf2b0745117f27

SHA1:

d609493ab76e5a481723c3f6aaeb5c234fe1c666

Base64:

8J+WjA==