Unicode Finder

"👁" U+1F441(EYE)

👁
U+1F441
بلاک کا نام
Miscellaneous Symbols and Pictographs
نام
EYE

Programming

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

Web

CSS
\01F441
HtmlDecimal
👁
HtmlHexadecimal
👁
Url
%F0%9F%91%81

Code

MD5
c5cf63f73c4b74c30dc6acdcc2733482
Sha1
6efb7a1444b528b4ec1864252cbb3c8c49027bfd
Base64
8J+RgQ==

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

Programming Languages

C:

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

JavaScript:

const char = '\u1F441';
console.log(char);  // Output: 👁

Java:

char c = '\u1F441';
System.out.println(c);  // Output: 👁

JSON:

{"text": "\u1F441"}  // Value: 👁

Python:

char = '\u1F441'
print(char)  # Output: 👁

Perl:

my $char = "\x{1F441}";
print $char;  # Output: 👁

PHP:

$char = "\x{1F441}";
echo $char;  // Output: 👁

Ruby:

char = "\u{1F441}"
puts char  # Output: 👁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128065;</p>  <!-- Display: 👁 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F441;</p>  <!-- Display: 👁 -->

URL Encoding:

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

Encodings

MD5:

c5cf63f73c4b74c30dc6acdcc2733482

SHA1:

6efb7a1444b528b4ec1864252cbb3c8c49027bfd

Base64:

8J+RgQ==