Unicode Finder

"๐ŸŒ’" U+1F312(WAXING CRESCENT MOON SYMBOL)

๐ŸŒ’
U+1F312
ๅ€ๅกŠๅ็จฑ
Miscellaneous Symbols and Pictographs
ๅ็จฑ
WAXING CRESCENT MOON SYMBOL

Programming

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

Web

CSS
\01F312
HtmlDecimal
🌒
HtmlHexadecimal
🌒
Url
%F0%9F%8C%92

Code

MD5
66fab814dee3ccc2eeaab266b5392922
Sha1
34dffcc6d0e7088c5fa79851bf34f5149e48103c
Base64
8J+Mkg==

ไฝฟ็”จ็ฏ„ไพ‹

Programming Languages

C:

char c = '\u1F312';
printf("%c\n", c);  // Output: ๐ŸŒ’

JavaScript:

const char = '\u1F312';
console.log(char);  // Output: ๐ŸŒ’

Java:

char c = '\u1F312';
System.out.println(c);  // Output: ๐ŸŒ’

JSON:

{"text": "\u1F312"}  // Value: ๐ŸŒ’

Python:

char = '\u1F312'
print(char)  # Output: ๐ŸŒ’

Perl:

my $char = "\x{1F312}";
print $char;  # Output: ๐ŸŒ’

PHP:

$char = "\x{1F312}";
echo $char;  // Output: ๐ŸŒ’

Ruby:

char = "\u{1F312}"
puts char  # Output: ๐ŸŒ’

Rust:

let c = '\u{1F312}';
println!("{}", c);  // Output: ๐ŸŒ’

Go:

char := '\u1F312'
fmt.Printf("%c\n", char)  // Output: ๐ŸŒ’

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F312";  /* Display: ๐ŸŒ’ */
}

HTML Decimal:

<p>HTML decimal: &#127762;</p>  <!-- Display: ๐ŸŒ’ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F312;</p>  <!-- Display: ๐ŸŒ’ -->

URL Encoding:

// ๐ŸŒ’ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8C%92

Encodings

MD5:

66fab814dee3ccc2eeaab266b5392922

SHA1:

34dffcc6d0e7088c5fa79851bf34f5149e48103c

Base64:

8J+Mkg==