Unicode Finder

"๐Ÿ‘ฃ" U+1F463(FOOTPRINTS)

๐Ÿ‘ฃ
U+1F463
ุงุณู… ุงู„ูƒุชู„ุฉ
Miscellaneous Symbols and Pictographs
ุงู„ุงุณู…
FOOTPRINTS

Programming

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

Web

CSS
\01F463
HtmlDecimal
👣
HtmlHexadecimal
👣
Url
%F0%9F%91%A3

Code

MD5
a6950b960fc40f03c9d741a0eb3de60b
Sha1
859278b740ddbecb401f5ad604841af0a86ebf14
Base64
8J+Row==

ุฃู…ุซู„ุฉ ุงู„ุงุณุชุฎุฏุงู…

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F463"}  // Value: ๐Ÿ‘ฃ

Python:

char = '\u1F463'
print(char)  # Output: ๐Ÿ‘ฃ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F463}"
puts char  # Output: ๐Ÿ‘ฃ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

a6950b960fc40f03c9d741a0eb3de60b

SHA1:

859278b740ddbecb401f5ad604841af0a86ebf14

Base64:

8J+Row==