Unicode Finder

"πŸŒ“" U+1F313(FIRST QUARTER MOON SYMBOL)

πŸŒ“
U+1F313
블둝 이름
Miscellaneous Symbols and Pictographs
이름
FIRST QUARTER MOON SYMBOL

Programming

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

Web

CSS
\01F313
HtmlDecimal
🌓
HtmlHexadecimal
🌓
Url
%F0%9F%8C%93

Code

MD5
af67b45a9d87dd284b1adf5963880804
Sha1
5ea1468cefce6043baa0a49c0a9c4ca187ade12c
Base64
8J+Mkw==

μ‚¬μš© μ˜ˆμ‹œ

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F313"}  // Value: πŸŒ“

Python:

char = '\u1F313'
print(char)  # Output: πŸŒ“

Perl:

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

PHP:

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

Ruby:

char = "\u{1F313}"
puts char  # Output: πŸŒ“

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

af67b45a9d87dd284b1adf5963880804

SHA1:

5ea1468cefce6043baa0a49c0a9c4ca187ade12c

Base64:

8J+Mkw==