Unicode Finder

"๐Ÿ”ท" U+1F537(LARGE BLUE DIAMOND)

๐Ÿ”ท
U+1F537
Block Name
Miscellaneous Symbols and Pictographs
Name
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==

Usage Examples

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==