Unicode Finder

"👮" U+1F46E(POLICE OFFICER)

👮
U+1F46E
بلاک کا نام
Miscellaneous Symbols and Pictographs
نام
POLICE OFFICER

Programming

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

Web

CSS
\01F46E
HtmlDecimal
👮
HtmlHexadecimal
👮
Url
%F0%9F%91%AE

Code

MD5
7014d0f3e12e721c37ec9837c635ef5f
Sha1
b29241da49cd709915435f6a0f099f91cfc50370
Base64
8J+Rrg==

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

Programming Languages

C:

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

JavaScript:

const char = '\u1F46E';
console.log(char);  // Output: 👮

Java:

char c = '\u1F46E';
System.out.println(c);  // Output: 👮

JSON:

{"text": "\u1F46E"}  // Value: 👮

Python:

char = '\u1F46E'
print(char)  # Output: 👮

Perl:

my $char = "\x{1F46E}";
print $char;  # Output: 👮

PHP:

$char = "\x{1F46E}";
echo $char;  // Output: 👮

Ruby:

char = "\u{1F46E}"
puts char  # Output: 👮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128110;</p>  <!-- Display: 👮 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F46E;</p>  <!-- Display: 👮 -->

URL Encoding:

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

Encodings

MD5:

7014d0f3e12e721c37ec9837c635ef5f

SHA1:

b29241da49cd709915435f6a0f099f91cfc50370

Base64:

8J+Rrg==