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==