Unicode Finder

"๐Ÿ”ก" U+1F521(INPUT SYMBOL FOR LATIN SMALL LETTERS)

๐Ÿ”ก
U+1F521
Block Name
Miscellaneous Symbols and Pictographs
Name
INPUT SYMBOL FOR LATIN SMALL LETTERS

Programming

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

Web

CSS
\01F521
HtmlDecimal
🔡
HtmlHexadecimal
🔡
Url
%F0%9F%94%A1

Code

MD5
200d2877d193edb8d7778621092e8cae
Sha1
5b79057c3cd63203041f6e5cc7e14ef675818808
Base64
8J+UoQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F521"}  // Value: ๐Ÿ”ก

Python:

char = '\u1F521'
print(char)  # Output: ๐Ÿ”ก

Perl:

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

PHP:

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

Ruby:

char = "\u{1F521}"
puts char  # Output: ๐Ÿ”ก

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

200d2877d193edb8d7778621092e8cae

SHA1:

5b79057c3cd63203041f6e5cc7e14ef675818808

Base64:

8J+UoQ==