Unicode Finder

"πŸŒ–" U+1F316(WANING GIBBOUS MOON SYMBOL)

πŸŒ–
U+1F316
Nome do Bloco
Miscellaneous Symbols and Pictographs
Nome
WANING GIBBOUS MOON SYMBOL

Programming

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

Web

CSS
\01F316
HtmlDecimal
🌖
HtmlHexadecimal
🌖
Url
%F0%9F%8C%96

Code

MD5
9b893916e9f11b5aabe515aa3b38557c
Sha1
09929a2cb724f6acc876277d8afe27f56ba7c907
Base64
8J+Mlg==

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F316"}  // Value: πŸŒ–

Python:

char = '\u1F316'
print(char)  # Output: πŸŒ–

Perl:

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

PHP:

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

Ruby:

char = "\u{1F316}"
puts char  # Output: πŸŒ–

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

9b893916e9f11b5aabe515aa3b38557c

SHA1:

09929a2cb724f6acc876277d8afe27f56ba7c907

Base64:

8J+Mlg==