Unicode Finder

"🔲" U+1F532(BLACK SQUARE BUTTON)

🔲
U+1F532
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
BLACK SQUARE BUTTON

Programming

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

Web

CSS
\01F532
HtmlDecimal
🔲
HtmlHexadecimal
🔲
Url
%F0%9F%94%B2

Code

MD5
81082227342ff8872916c45c23651ede
Sha1
b6d44c449eb2c2a120e9140c0155aea91d157b1e
Base64
8J+Usg==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F532';
console.log(char);  // Output: 🔲

Java:

char c = '\u1F532';
System.out.println(c);  // Output: 🔲

JSON:

{"text": "\u1F532"}  // Value: 🔲

Python:

char = '\u1F532'
print(char)  # Output: 🔲

Perl:

my $char = "\x{1F532}";
print $char;  # Output: 🔲

PHP:

$char = "\x{1F532}";
echo $char;  // Output: 🔲

Ruby:

char = "\u{1F532}"
puts char  # Output: 🔲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128306;</p>  <!-- Display: 🔲 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F532;</p>  <!-- Display: 🔲 -->

URL Encoding:

// 🔲 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%94%B2

Encodings

MD5:

81082227342ff8872916c45c23651ede

SHA1:

b6d44c449eb2c2a120e9140c0155aea91d157b1e

Base64:

8J+Usg==