Unicode Finder

"⚰" U+26B0(COFFIN)

U+26B0
Block Name
Miscellaneous Symbols
Name
COFFIN

Programming

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

Web

CSS
\0026B0
HtmlDecimal
⚰
HtmlHexadecimal
⚰
Url
%E2%9A%B0

Code

MD5
1c1e326758f3cad5e16731459b0c8779
Sha1
8221b39176a6096ed6d1aa847507b5b44d6e3655
Base64
4pqw

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u26B0';
console.log(char);  // Output: ⚰

Java:

char c = '\u26B0';
System.out.println(c);  // Output: ⚰

JSON:

{"text": "\u26B0"}  // Value: ⚰

Python:

char = '\u26B0'
print(char)  # Output: ⚰

Perl:

my $char = "\x{26B0}";
print $char;  # Output: ⚰

PHP:

$char = "\x{26B0}";
echo $char;  // Output: ⚰

Ruby:

char = "\u{26B0}"
puts char  # Output: ⚰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#9904;</p>  <!-- Display: ⚰ -->

HTML Hexadecimal:

<p>HTML hex: &#x26B0;</p>  <!-- Display: ⚰ -->

URL Encoding:

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

Encodings

MD5:

1c1e326758f3cad5e16731459b0c8779

SHA1:

8221b39176a6096ed6d1aa847507b5b44d6e3655

Base64:

4pqw