Unicode Finder

"🔷" U+1F537(LARGE BLUE DIAMOND)

🔷
U+1F537
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
LARGE BLUE DIAMOND

Programming

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

Web

CSS
\01F537
HtmlDecimal
🔷
HtmlHexadecimal
🔷
Url
%F0%9F%94%B7

Code

MD5
041950d403d86cc87545f8be80cb753d
Sha1
b1e13888833eddd2b4593607ec1ce954665bb1c8
Base64
8J+Utw==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F537';
console.log(char);  // Output: 🔷

Java:

char c = '\u1F537';
System.out.println(c);  // Output: 🔷

JSON:

{"text": "\u1F537"}  // Value: 🔷

Python:

char = '\u1F537'
print(char)  # Output: 🔷

Perl:

my $char = "\x{1F537}";
print $char;  # Output: 🔷

PHP:

$char = "\x{1F537}";
echo $char;  // Output: 🔷

Ruby:

char = "\u{1F537}"
puts char  # Output: 🔷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128311;</p>  <!-- Display: 🔷 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F537;</p>  <!-- Display: 🔷 -->

URL Encoding:

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

Encodings

MD5:

041950d403d86cc87545f8be80cb753d

SHA1:

b1e13888833eddd2b4593607ec1ce954665bb1c8

Base64:

8J+Utw==