Unicode Finder

"😷" U+1F637(FACE WITH MEDICAL MASK)

😷
U+1F637
Block Name
Emoticons
Name
FACE WITH MEDICAL MASK

Programming

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

Web

CSS
\01F637
HtmlDecimal
😷
HtmlHexadecimal
😷
Url
%F0%9F%98%B7

Code

MD5
3faded80087d5e75eb5521cec09d1566
Sha1
be8ef91bdbe77b928f506886cbc65ba5509f7fcc
Base64
8J+Ytw==

Usage Examples

Programming Languages

C:

char c = '\u1F637';
printf("%c\n", c);  // Output: 😷

JavaScript:

const char = '\u1F637';
console.log(char);  // Output: 😷

Java:

char c = '\u1F637';
System.out.println(c);  // Output: 😷

JSON:

{"text": "\u1F637"}  // Value: 😷

Python:

char = '\u1F637'
print(char)  # Output: 😷

Perl:

my $char = "\x{1F637}";
print $char;  # Output: 😷

PHP:

$char = "\x{1F637}";
echo $char;  // Output: 😷

Ruby:

char = "\u{1F637}"
puts char  # Output: 😷

Rust:

let c = '\u{1F637}';
println!("{}", c);  // Output: 😷

Go:

char := '\u1F637'
fmt.Printf("%c\n", char)  // Output: 😷

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F637";  /* Display: 😷 */
}

HTML Decimal:

<p>HTML decimal: &#128567;</p>  <!-- Display: 😷 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F637;</p>  <!-- Display: 😷 -->

URL Encoding:

// 😷 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%98%B7

Encodings

MD5:

3faded80087d5e75eb5521cec09d1566

SHA1:

be8ef91bdbe77b928f506886cbc65ba5509f7fcc

Base64:

8J+Ytw==