Unicode Finder

"🕼" U+1F57C(TELEPHONE RECEIVER WITH PAGE)

🕼
U+1F57C
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
TELEPHONE RECEIVER WITH PAGE

Programming

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

Web

CSS
\01F57C
HtmlDecimal
🕼
HtmlHexadecimal
🕼
Url
%F0%9F%95%BC

Code

MD5
d75e2b42bf5be02606aa6f6f41b36294
Sha1
835c37cd78b35995af8227a6794c11c1e4c7d7c3
Base64
8J+VvA==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F57C';
console.log(char);  // Output: 🕼

Java:

char c = '\u1F57C';
System.out.println(c);  // Output: 🕼

JSON:

{"text": "\u1F57C"}  // Value: 🕼

Python:

char = '\u1F57C'
print(char)  # Output: 🕼

Perl:

my $char = "\x{1F57C}";
print $char;  # Output: 🕼

PHP:

$char = "\x{1F57C}";
echo $char;  // Output: 🕼

Ruby:

char = "\u{1F57C}"
puts char  # Output: 🕼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128380;</p>  <!-- Display: 🕼 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F57C;</p>  <!-- Display: 🕼 -->

URL Encoding:

// 🕼 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%95%BC

Encodings

MD5:

d75e2b42bf5be02606aa6f6f41b36294

SHA1:

835c37cd78b35995af8227a6794c11c1e4c7d7c3

Base64:

8J+VvA==