Unicode Finder

"๐Ÿ”ญ" U+1F52D(TELESCOPE)

๐Ÿ”ญ
U+1F52D
Block Name
Miscellaneous Symbols and Pictographs
Name
TELESCOPE

Programming

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

Web

CSS
\01F52D
HtmlDecimal
🔭
HtmlHexadecimal
🔭
Url
%F0%9F%94%AD

Code

MD5
6f62076fe7b0c0edd38a5399589fb3c8
Sha1
2dc57cfd4757835b6bca2f1288158131cd65c73b
Base64
8J+UrQ==

Usage Examples

Programming Languages

C:

char c = '\u1F52D';
printf("%c\n", c);  // Output: ๐Ÿ”ญ

JavaScript:

const char = '\u1F52D';
console.log(char);  // Output: ๐Ÿ”ญ

Java:

char c = '\u1F52D';
System.out.println(c);  // Output: ๐Ÿ”ญ

JSON:

{"text": "\u1F52D"}  // Value: ๐Ÿ”ญ

Python:

char = '\u1F52D'
print(char)  # Output: ๐Ÿ”ญ

Perl:

my $char = "\x{1F52D}";
print $char;  # Output: ๐Ÿ”ญ

PHP:

$char = "\x{1F52D}";
echo $char;  // Output: ๐Ÿ”ญ

Ruby:

char = "\u{1F52D}"
puts char  # Output: ๐Ÿ”ญ

Rust:

let c = '\u{1F52D}';
println!("{}", c);  // Output: ๐Ÿ”ญ

Go:

char := '\u1F52D'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ”ญ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F52D";  /* Display: ๐Ÿ”ญ */
}

HTML Decimal:

<p>HTML decimal: &#128301;</p>  <!-- Display: ๐Ÿ”ญ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F52D;</p>  <!-- Display: ๐Ÿ”ญ -->

URL Encoding:

// ๐Ÿ”ญ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%94%AD

Encodings

MD5:

6f62076fe7b0c0edd38a5399589fb3c8

SHA1:

2dc57cfd4757835b6bca2f1288158131cd65c73b

Base64:

8J+UrQ==