Unicode Finder

"πŸŒ—" U+1F317(LAST QUARTER MOON SYMBOL)

πŸŒ—
U+1F317
Blockname
Miscellaneous Symbols and Pictographs
Name
LAST QUARTER MOON SYMBOL

Programming

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

Web

CSS
\01F317
HtmlDecimal
🌗
HtmlHexadecimal
🌗
Url
%F0%9F%8C%97

Code

MD5
44954ec31c8d8feed184d6b9b5ca48bb
Sha1
7523bb8c4d7d90c1790ed135de3b4eeeee256f80
Base64
8J+Mlw==

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F317"}  // Value: πŸŒ—

Python:

char = '\u1F317'
print(char)  # Output: πŸŒ—

Perl:

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

PHP:

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

Ruby:

char = "\u{1F317}"
puts char  # Output: πŸŒ—

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

44954ec31c8d8feed184d6b9b5ca48bb

SHA1:

7523bb8c4d7d90c1790ed135de3b4eeeee256f80

Base64:

8J+Mlw==