Unicode Finder

"👸" U+1F478(PRINCESS)

👸
U+1F478
بلاک کا نام
Miscellaneous Symbols and Pictographs
نام
PRINCESS

Programming

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

Web

CSS
\01F478
HtmlDecimal
👸
HtmlHexadecimal
👸
Url
%F0%9F%91%B8

Code

MD5
2129815b74405831e0f453a30048a6e8
Sha1
8cccd6701cde274fc1baa2d73afa9d17dbc590a0
Base64
8J+RuA==

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

Programming Languages

C:

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

JavaScript:

const char = '\u1F478';
console.log(char);  // Output: 👸

Java:

char c = '\u1F478';
System.out.println(c);  // Output: 👸

JSON:

{"text": "\u1F478"}  // Value: 👸

Python:

char = '\u1F478'
print(char)  # Output: 👸

Perl:

my $char = "\x{1F478}";
print $char;  # Output: 👸

PHP:

$char = "\x{1F478}";
echo $char;  // Output: 👸

Ruby:

char = "\u{1F478}"
puts char  # Output: 👸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128120;</p>  <!-- Display: 👸 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F478;</p>  <!-- Display: 👸 -->

URL Encoding:

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

Encodings

MD5:

2129815b74405831e0f453a30048a6e8

SHA1:

8cccd6701cde274fc1baa2d73afa9d17dbc590a0

Base64:

8J+RuA==