Unicode Finder

"🐣" U+1F423(HATCHING CHICK)

🐣
U+1F423
区块名称
Miscellaneous Symbols and Pictographs
名称
HATCHING CHICK

Programming

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

Web

CSS
\01F423
HtmlDecimal
🐣
HtmlHexadecimal
🐣
Url
%F0%9F%90%A3

Code

MD5
49b8b000b93d9f582aff4c192eb13a37
Sha1
1ffca31daab0ced6c3f96d702c5b745f45f4876f
Base64
8J+Qow==

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1F423';
console.log(char);  // Output: 🐣

Java:

char c = '\u1F423';
System.out.println(c);  // Output: 🐣

JSON:

{"text": "\u1F423"}  // Value: 🐣

Python:

char = '\u1F423'
print(char)  # Output: 🐣

Perl:

my $char = "\x{1F423}";
print $char;  # Output: 🐣

PHP:

$char = "\x{1F423}";
echo $char;  // Output: 🐣

Ruby:

char = "\u{1F423}"
puts char  # Output: 🐣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128035;</p>  <!-- Display: 🐣 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F423;</p>  <!-- Display: 🐣 -->

URL Encoding:

// 🐣 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%90%A3

Encodings

MD5:

49b8b000b93d9f582aff4c192eb13a37

SHA1:

1ffca31daab0ced6c3f96d702c5b745f45f4876f

Base64:

8J+Qow==