Unicode Finder

"🔸" U+1F538(SMALL ORANGE DIAMOND)

🔸
U+1F538
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
SMALL ORANGE DIAMOND

Programming

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

Web

CSS
\01F538
HtmlDecimal
🔸
HtmlHexadecimal
🔸
Url
%F0%9F%94%B8

Code

MD5
1c7439853a5364c77f32aa28d5559a8f
Sha1
8eade9a26c21734201da25d96aae5731c6bc1a96
Base64
8J+UuA==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F538';
console.log(char);  // Output: 🔸

Java:

char c = '\u1F538';
System.out.println(c);  // Output: 🔸

JSON:

{"text": "\u1F538"}  // Value: 🔸

Python:

char = '\u1F538'
print(char)  # Output: 🔸

Perl:

my $char = "\x{1F538}";
print $char;  # Output: 🔸

PHP:

$char = "\x{1F538}";
echo $char;  // Output: 🔸

Ruby:

char = "\u{1F538}"
puts char  # Output: 🔸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128312;</p>  <!-- Display: 🔸 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F538;</p>  <!-- Display: 🔸 -->

URL Encoding:

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

Encodings

MD5:

1c7439853a5364c77f32aa28d5559a8f

SHA1:

8eade9a26c21734201da25d96aae5731c6bc1a96

Base64:

8J+UuA==