Unicode Finder

"🏖" U+1F3D6(BEACH WITH UMBRELLA)

🏖
U+1F3D6
Название Блока
Miscellaneous Symbols and Pictographs
Название
BEACH WITH UMBRELLA

Programming

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

Web

CSS
\01F3D6
HtmlDecimal
🏖
HtmlHexadecimal
🏖
Url
%F0%9F%8F%96

Code

MD5
1fde9489ef9075c7f5f5de7e6e9892b1
Sha1
f5e1ae76e54cd47adf08bbd865da9efc8bc4cc19
Base64
8J+Plg==

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u1F3D6';
console.log(char);  // Output: 🏖

Java:

char c = '\u1F3D6';
System.out.println(c);  // Output: 🏖

JSON:

{"text": "\u1F3D6"}  // Value: 🏖

Python:

char = '\u1F3D6'
print(char)  # Output: 🏖

Perl:

my $char = "\x{1F3D6}";
print $char;  # Output: 🏖

PHP:

$char = "\x{1F3D6}";
echo $char;  // Output: 🏖

Ruby:

char = "\u{1F3D6}"
puts char  # Output: 🏖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#127958;</p>  <!-- Display: 🏖 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3D6;</p>  <!-- Display: 🏖 -->

URL Encoding:

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

Encodings

MD5:

1fde9489ef9075c7f5f5de7e6e9892b1

SHA1:

f5e1ae76e54cd47adf08bbd865da9efc8bc4cc19

Base64:

8J+Plg==