Unicode Finder

"👞" U+1F45E(MANS SHOE)

👞
U+1F45E
بلاک کا نام
Miscellaneous Symbols and Pictographs
نام
MANS SHOE

Programming

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

Web

CSS
\01F45E
HtmlDecimal
👞
HtmlHexadecimal
👞
Url
%F0%9F%91%9E

Code

MD5
8f22d7674437cbc7f82ddc3d09ddc331
Sha1
22716486474cd9bc49e6034b5a65f4f6c387bedb
Base64
8J+Rng==

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

Programming Languages

C:

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

JavaScript:

const char = '\u1F45E';
console.log(char);  // Output: 👞

Java:

char c = '\u1F45E';
System.out.println(c);  // Output: 👞

JSON:

{"text": "\u1F45E"}  // Value: 👞

Python:

char = '\u1F45E'
print(char)  # Output: 👞

Perl:

my $char = "\x{1F45E}";
print $char;  # Output: 👞

PHP:

$char = "\x{1F45E}";
echo $char;  // Output: 👞

Ruby:

char = "\u{1F45E}"
puts char  # Output: 👞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128094;</p>  <!-- Display: 👞 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F45E;</p>  <!-- Display: 👞 -->

URL Encoding:

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

Encodings

MD5:

8f22d7674437cbc7f82ddc3d09ddc331

SHA1:

22716486474cd9bc49e6034b5a65f4f6c387bedb

Base64:

8J+Rng==