Unicode Finder

"๐Ÿ”ค" U+1F524(INPUT SYMBOL FOR LATIN LETTERS)

๐Ÿ”ค
U+1F524
Block Name
Miscellaneous Symbols and Pictographs
Name
INPUT SYMBOL FOR LATIN LETTERS

Programming

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

Web

CSS
\01F524
HtmlDecimal
🔤
HtmlHexadecimal
🔤
Url
%F0%9F%94%A4

Code

MD5
d06a1b284b7b450dab2b36df0f22e3f2
Sha1
4c106ddba792f84b0b9e001b86381a046a31ce5d
Base64
8J+UpA==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F524"}  // Value: ๐Ÿ”ค

Python:

char = '\u1F524'
print(char)  # Output: ๐Ÿ”ค

Perl:

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

PHP:

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

Ruby:

char = "\u{1F524}"
puts char  # Output: ๐Ÿ”ค

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

d06a1b284b7b450dab2b36df0f22e3f2

SHA1:

4c106ddba792f84b0b9e001b86381a046a31ce5d

Base64:

8J+UpA==