Unicode Finder

"๐Ÿ”ฆ" U+1F526(ELECTRIC TORCH)

๐Ÿ”ฆ
U+1F526
Block Name
Miscellaneous Symbols and Pictographs
Name
ELECTRIC TORCH

Programming

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

Web

CSS
\01F526
HtmlDecimal
🔦
HtmlHexadecimal
🔦
Url
%F0%9F%94%A6

Code

MD5
d46d2c01ad2a92afdc952c7ac7ee5192
Sha1
0988c29840e39522bef0db7c828f79f83713bc45
Base64
8J+Upg==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F526"}  // Value: ๐Ÿ”ฆ

Python:

char = '\u1F526'
print(char)  # Output: ๐Ÿ”ฆ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F526}"
puts char  # Output: ๐Ÿ”ฆ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

d46d2c01ad2a92afdc952c7ac7ee5192

SHA1:

0988c29840e39522bef0db7c828f79f83713bc45

Base64:

8J+Upg==