Unicode Finder

"👪" U+1F46A(FAMILY)

👪
U+1F46A
بلاک کا نام
Miscellaneous Symbols and Pictographs
نام
FAMILY

Programming

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

Web

CSS
\01F46A
HtmlDecimal
👪
HtmlHexadecimal
👪
Url
%F0%9F%91%AA

Code

MD5
08e3d17fe2e3adc5ce3045d75263a260
Sha1
77de332c7098255106fc8fdd912602a211f29cc1
Base64
8J+Rqg==

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

Programming Languages

C:

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

JavaScript:

const char = '\u1F46A';
console.log(char);  // Output: 👪

Java:

char c = '\u1F46A';
System.out.println(c);  // Output: 👪

JSON:

{"text": "\u1F46A"}  // Value: 👪

Python:

char = '\u1F46A'
print(char)  # Output: 👪

Perl:

my $char = "\x{1F46A}";
print $char;  # Output: 👪

PHP:

$char = "\x{1F46A}";
echo $char;  // Output: 👪

Ruby:

char = "\u{1F46A}"
puts char  # Output: 👪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128106;</p>  <!-- Display: 👪 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F46A;</p>  <!-- Display: 👪 -->

URL Encoding:

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

Encodings

MD5:

08e3d17fe2e3adc5ce3045d75263a260

SHA1:

77de332c7098255106fc8fdd912602a211f29cc1

Base64:

8J+Rqg==