Unicode Finder

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

πŸŒ’
U+1F312
Nome do Bloco
Miscellaneous Symbols and Pictographs
Nome
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==

Exemplos de Uso

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