Unicode Finder

"๐Ÿ‘ฉ" U+1F469(WOMAN)

๐Ÿ‘ฉ
U+1F469
Nume Bloc
Miscellaneous Symbols and Pictographs
Nume
WOMAN

Programming

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

Web

CSS
\01F469
HtmlDecimal
👩
HtmlHexadecimal
👩
Url
%F0%9F%91%A9

Code

MD5
a09c311859876decff4853e916d1a314
Sha1
0375ce2d54af8d717f3427e0895e0254ce52598c
Base64
8J+RqQ==

Exemple de Utilizare

Programming Languages

C:

char c = '\u1F469';
printf("%c\n", c);  // Output: ๐Ÿ‘ฉ

JavaScript:

const char = '\u1F469';
console.log(char);  // Output: ๐Ÿ‘ฉ

Java:

char c = '\u1F469';
System.out.println(c);  // Output: ๐Ÿ‘ฉ

JSON:

{"text": "\u1F469"}  // Value: ๐Ÿ‘ฉ

Python:

char = '\u1F469'
print(char)  # Output: ๐Ÿ‘ฉ

Perl:

my $char = "\x{1F469}";
print $char;  # Output: ๐Ÿ‘ฉ

PHP:

$char = "\x{1F469}";
echo $char;  // Output: ๐Ÿ‘ฉ

Ruby:

char = "\u{1F469}"
puts char  # Output: ๐Ÿ‘ฉ

Rust:

let c = '\u{1F469}';
println!("{}", c);  // Output: ๐Ÿ‘ฉ

Go:

char := '\u1F469'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ‘ฉ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F469";  /* Display: ๐Ÿ‘ฉ */
}

HTML Decimal:

<p>HTML decimal: &#128105;</p>  <!-- Display: ๐Ÿ‘ฉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F469;</p>  <!-- Display: ๐Ÿ‘ฉ -->

URL Encoding:

// ๐Ÿ‘ฉ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%91%A9

Encodings

MD5:

a09c311859876decff4853e916d1a314

SHA1:

0375ce2d54af8d717f3427e0895e0254ce52598c

Base64:

8J+RqQ==