Unicode Finder

"👏" U+1F44F(CLAPPING HANDS SIGN)

👏
U+1F44F
بلاک کا نام
Miscellaneous Symbols and Pictographs
نام
CLAPPING HANDS SIGN

Programming

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

Web

CSS
\01F44F
HtmlDecimal
👏
HtmlHexadecimal
👏
Url
%F0%9F%91%8F

Code

MD5
29f9c0ea1b6b07859f68563cdc08c64f
Sha1
a229bbc79df21cd654ad1064231f2c9c76c4cc38
Base64
8J+Rjw==

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

Programming Languages

C:

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

JavaScript:

const char = '\u1F44F';
console.log(char);  // Output: 👏

Java:

char c = '\u1F44F';
System.out.println(c);  // Output: 👏

JSON:

{"text": "\u1F44F"}  // Value: 👏

Python:

char = '\u1F44F'
print(char)  # Output: 👏

Perl:

my $char = "\x{1F44F}";
print $char;  # Output: 👏

PHP:

$char = "\x{1F44F}";
echo $char;  // Output: 👏

Ruby:

char = "\u{1F44F}"
puts char  # Output: 👏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128079;</p>  <!-- Display: 👏 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F44F;</p>  <!-- Display: 👏 -->

URL Encoding:

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

Encodings

MD5:

29f9c0ea1b6b07859f68563cdc08c64f

SHA1:

a229bbc79df21cd654ad1064231f2c9c76c4cc38

Base64:

8J+Rjw==