Unicode Finder

"🖼" U+1F5BC(FRAME WITH PICTURE)

🖼
U+1F5BC
Blokk Neve
Miscellaneous Symbols and Pictographs
Név
FRAME WITH PICTURE

Programming

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

Web

CSS
\01F5BC
HtmlDecimal
🖼
HtmlHexadecimal
🖼
Url
%F0%9F%96%BC

Code

MD5
4b968b20ad1d43eeb011ec3b6f609d26
Sha1
c2d3390fe4ad847c0d4bb5c71e975911e4ba13e7
Base64
8J+WvA==

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u1F5BC';
console.log(char);  // Output: 🖼

Java:

char c = '\u1F5BC';
System.out.println(c);  // Output: 🖼

JSON:

{"text": "\u1F5BC"}  // Value: 🖼

Python:

char = '\u1F5BC'
print(char)  # Output: 🖼

Perl:

my $char = "\x{1F5BC}";
print $char;  # Output: 🖼

PHP:

$char = "\x{1F5BC}";
echo $char;  // Output: 🖼

Ruby:

char = "\u{1F5BC}"
puts char  # Output: 🖼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128444;</p>  <!-- Display: 🖼 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F5BC;</p>  <!-- Display: 🖼 -->

URL Encoding:

// 🖼 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%96%BC

Encodings

MD5:

4b968b20ad1d43eeb011ec3b6f609d26

SHA1:

c2d3390fe4ad847c0d4bb5c71e975911e4ba13e7

Base64:

8J+WvA==