Unicode Finder

"๐Ÿฉ" U+1F429(POODLE)

๐Ÿฉ
U+1F429
Nume Bloc
Miscellaneous Symbols and Pictographs
Nume
POODLE

Programming

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

Web

CSS
\01F429
HtmlDecimal
🐩
HtmlHexadecimal
🐩
Url
%F0%9F%90%A9

Code

MD5
c9f12a2e8d367c2d2c36421073d72501
Sha1
96329753a472e1561793c13072655cb492337402
Base64
8J+QqQ==

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F429"}  // Value: ๐Ÿฉ

Python:

char = '\u1F429'
print(char)  # Output: ๐Ÿฉ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F429}"
puts char  # Output: ๐Ÿฉ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

c9f12a2e8d367c2d2c36421073d72501

SHA1:

96329753a472e1561793c13072655cb492337402

Base64:

8J+QqQ==