Unicode Finder

"๐Ÿ˜ฃ" U+1F623(PERSEVERING FACE)

๐Ÿ˜ฃ
U+1F623
Block Name
Emoticons
Name
PERSEVERING FACE

Programming

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

Web

CSS
\01F623
HtmlDecimal
😣
HtmlHexadecimal
😣
Url
%F0%9F%98%A3

Code

MD5
2387d22ee1c08df9cb6c21cc7a2efa46
Sha1
e6ad7fd846d8303006216a64f0f65eab85c0fcfa
Base64
8J+Yow==

Usage Examples

Programming Languages

C:

char c = '\u1F623';
printf("%c\n", c);  // Output: ๐Ÿ˜ฃ

JavaScript:

const char = '\u1F623';
console.log(char);  // Output: ๐Ÿ˜ฃ

Java:

char c = '\u1F623';
System.out.println(c);  // Output: ๐Ÿ˜ฃ

JSON:

{"text": "\u1F623"}  // Value: ๐Ÿ˜ฃ

Python:

char = '\u1F623'
print(char)  # Output: ๐Ÿ˜ฃ

Perl:

my $char = "\x{1F623}";
print $char;  # Output: ๐Ÿ˜ฃ

PHP:

$char = "\x{1F623}";
echo $char;  // Output: ๐Ÿ˜ฃ

Ruby:

char = "\u{1F623}"
puts char  # Output: ๐Ÿ˜ฃ

Rust:

let c = '\u{1F623}';
println!("{}", c);  // Output: ๐Ÿ˜ฃ

Go:

char := '\u1F623'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ˜ฃ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F623";  /* Display: ๐Ÿ˜ฃ */
}

HTML Decimal:

<p>HTML decimal: &#128547;</p>  <!-- Display: ๐Ÿ˜ฃ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F623;</p>  <!-- Display: ๐Ÿ˜ฃ -->

URL Encoding:

// ๐Ÿ˜ฃ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%98%A3

Encodings

MD5:

2387d22ee1c08df9cb6c21cc7a2efa46

SHA1:

e6ad7fd846d8303006216a64f0f65eab85c0fcfa

Base64:

8J+Yow==