Unicode Finder

"🖭" U+1F5AD(TAPE CARTRIDGE)

🖭
U+1F5AD
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
TAPE CARTRIDGE

Programming

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

Web

CSS
\01F5AD
HtmlDecimal
🖭
HtmlHexadecimal
🖭
Url
%F0%9F%96%AD

Code

MD5
4c64c41ec290f3d577865c47fbddb138
Sha1
01977cf27faa07a2016a306a5d3f34290c11d61e
Base64
8J+WrQ==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F5AD';
console.log(char);  // Output: 🖭

Java:

char c = '\u1F5AD';
System.out.println(c);  // Output: 🖭

JSON:

{"text": "\u1F5AD"}  // Value: 🖭

Python:

char = '\u1F5AD'
print(char)  # Output: 🖭

Perl:

my $char = "\x{1F5AD}";
print $char;  # Output: 🖭

PHP:

$char = "\x{1F5AD}";
echo $char;  // Output: 🖭

Ruby:

char = "\u{1F5AD}"
puts char  # Output: 🖭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128429;</p>  <!-- Display: 🖭 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F5AD;</p>  <!-- Display: 🖭 -->

URL Encoding:

// 🖭 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%96%AD

Encodings

MD5:

4c64c41ec290f3d577865c47fbddb138

SHA1:

01977cf27faa07a2016a306a5d3f34290c11d61e

Base64:

8J+WrQ==