Unicode Finder

"👃" U+1F443(NOSE)

👃
U+1F443
بلاک کا نام
Miscellaneous Symbols and Pictographs
نام
NOSE

Programming

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

Web

CSS
\01F443
HtmlDecimal
👃
HtmlHexadecimal
👃
Url
%F0%9F%91%83

Code

MD5
192a5d2bc9cd8f91b1a29cb28cb71a82
Sha1
78876bf84f9c6b61c9cb1176ba702490c1471c6e
Base64
8J+Rgw==

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u1F443';
console.log(char);  // Output: 👃

Java:

char c = '\u1F443';
System.out.println(c);  // Output: 👃

JSON:

{"text": "\u1F443"}  // Value: 👃

Python:

char = '\u1F443'
print(char)  # Output: 👃

Perl:

my $char = "\x{1F443}";
print $char;  # Output: 👃

PHP:

$char = "\x{1F443}";
echo $char;  // Output: 👃

Ruby:

char = "\u{1F443}"
puts char  # Output: 👃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128067;</p>  <!-- Display: 👃 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F443;</p>  <!-- Display: 👃 -->

URL Encoding:

// 👃 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%91%83

Encodings

MD5:

192a5d2bc9cd8f91b1a29cb28cb71a82

SHA1:

78876bf84f9c6b61c9cb1176ba702490c1471c6e

Base64:

8J+Rgw==