Unicode Finder

"🗏" U+1F5CF(PAGE)

🗏
U+1F5CF
Blokk Neve
Miscellaneous Symbols and Pictographs
Név
PAGE

Programming

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

Web

CSS
\01F5CF
HtmlDecimal
🗏
HtmlHexadecimal
🗏
Url
%F0%9F%97%8F

Code

MD5
db02e7ed38ca79b4e44036f8899c7e84
Sha1
e36643970fa53487038b6d34f97999e12805abda
Base64
8J+Xjw==

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u1F5CF';
console.log(char);  // Output: 🗏

Java:

char c = '\u1F5CF';
System.out.println(c);  // Output: 🗏

JSON:

{"text": "\u1F5CF"}  // Value: 🗏

Python:

char = '\u1F5CF'
print(char)  # Output: 🗏

Perl:

my $char = "\x{1F5CF}";
print $char;  # Output: 🗏

PHP:

$char = "\x{1F5CF}";
echo $char;  // Output: 🗏

Ruby:

char = "\u{1F5CF}"
puts char  # Output: 🗏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128463;</p>  <!-- Display: 🗏 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F5CF;</p>  <!-- Display: 🗏 -->

URL Encoding:

// 🗏 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%97%8F

Encodings

MD5:

db02e7ed38ca79b4e44036f8899c7e84

SHA1:

e36643970fa53487038b6d34f97999e12805abda

Base64:

8J+Xjw==