Unicode Finder

"⚳" U+26B3(CERES)

U+26B3
Block Name
Miscellaneous Symbols
Name
CERES

Programming

C
\u26B3
JavaScript
\u26B3
Java
\u26B3
Json
\u26B3
Python
\u26B3
Perl
\x{26B3}
PHP
\x{26B3}
Ruby
\u{26B3}
Rust
\u{26B3}
Go
\u26B3

Web

CSS
\0026B3
HtmlDecimal
⚳
HtmlHexadecimal
⚳
Url
%E2%9A%B3

Code

MD5
e3978b6dd47ac15de890c4cb15ff5440
Sha1
d370ce3b660522c76c6920ae777d6f6bb4197858
Base64
4pqz

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u26B3';
console.log(char);  // Output: ⚳

Java:

char c = '\u26B3';
System.out.println(c);  // Output: ⚳

JSON:

{"text": "\u26B3"}  // Value: ⚳

Python:

char = '\u26B3'
print(char)  # Output: ⚳

Perl:

my $char = "\x{26B3}";
print $char;  # Output: ⚳

PHP:

$char = "\x{26B3}";
echo $char;  // Output: ⚳

Ruby:

char = "\u{26B3}"
puts char  # Output: ⚳

Rust:

let c = '\u{26B3}';
println!("{}", c);  // Output: ⚳

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0026B3";  /* Display: ⚳ */
}

HTML Decimal:

<p>HTML decimal: &#9907;</p>  <!-- Display: ⚳ -->

HTML Hexadecimal:

<p>HTML hex: &#x26B3;</p>  <!-- Display: ⚳ -->

URL Encoding:

// ⚳ URL encoding
https://unicodefinder.com/search.php?query=%E2%9A%B3

Encodings

MD5:

e3978b6dd47ac15de890c4cb15ff5440

SHA1:

d370ce3b660522c76c6920ae777d6f6bb4197858

Base64:

4pqz