Unicode Finder

"⚱" U+26B1(FUNERAL URN)

U+26B1
Block Name
Miscellaneous Symbols
Name
FUNERAL URN

Programming

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

Web

CSS
\0026B1
HtmlDecimal
⚱
HtmlHexadecimal
⚱
Url
%E2%9A%B1

Code

MD5
58ef55d1272499ad98420148c57f17f3
Sha1
6776fccd566a5a3dac72e2ed89658ab3ec7aca41
Base64
4pqx

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u26B1';
console.log(char);  // Output: ⚱

Java:

char c = '\u26B1';
System.out.println(c);  // Output: ⚱

JSON:

{"text": "\u26B1"}  // Value: ⚱

Python:

char = '\u26B1'
print(char)  # Output: ⚱

Perl:

my $char = "\x{26B1}";
print $char;  # Output: ⚱

PHP:

$char = "\x{26B1}";
echo $char;  // Output: ⚱

Ruby:

char = "\u{26B1}"
puts char  # Output: ⚱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#9905;</p>  <!-- Display: ⚱ -->

HTML Hexadecimal:

<p>HTML hex: &#x26B1;</p>  <!-- Display: ⚱ -->

URL Encoding:

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

Encodings

MD5:

58ef55d1272499ad98420148c57f17f3

SHA1:

6776fccd566a5a3dac72e2ed89658ab3ec7aca41

Base64:

4pqx