Unicode Finder

"🎏" U+1F38F(CARP STREAMER)

🎏
U+1F38F
Název Bloku
Miscellaneous Symbols and Pictographs
Název
CARP STREAMER

Programming

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

Web

CSS
\01F38F
HtmlDecimal
🎏
HtmlHexadecimal
🎏
Url
%F0%9F%8E%8F

Code

MD5
2f8fc794b79fa0b010e8d6076dde52ff
Sha1
b857f2c6b6036499c912eb8a266eeeea9c49df56
Base64
8J+Ojw==

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u1F38F';
console.log(char);  // Output: 🎏

Java:

char c = '\u1F38F';
System.out.println(c);  // Output: 🎏

JSON:

{"text": "\u1F38F"}  // Value: 🎏

Python:

char = '\u1F38F'
print(char)  # Output: 🎏

Perl:

my $char = "\x{1F38F}";
print $char;  # Output: 🎏

PHP:

$char = "\x{1F38F}";
echo $char;  // Output: 🎏

Ruby:

char = "\u{1F38F}"
puts char  # Output: 🎏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#127887;</p>  <!-- Display: 🎏 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F38F;</p>  <!-- Display: 🎏 -->

URL Encoding:

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

Encodings

MD5:

2f8fc794b79fa0b010e8d6076dde52ff

SHA1:

b857f2c6b6036499c912eb8a266eeeea9c49df56

Base64:

8J+Ojw==