Unicode Finder

"⛞" U+26DE(FALLING DIAGONAL IN WHITE CIRCLE IN BLACK SQUARE)

U+26DE
Block Name
Miscellaneous Symbols
Name
FALLING DIAGONAL IN WHITE CIRCLE IN BLACK SQUARE

Programming

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

Web

CSS
\0026DE
HtmlDecimal
⛞
HtmlHexadecimal
⛞
Url
%E2%9B%9E

Code

MD5
4c7fb40daa27767b014cefbe9174e496
Sha1
d83188145f853cdc8f9d86eb3d53c74080766cdb
Base64
4pue

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u26DE';
console.log(char);  // Output: ⛞

Java:

char c = '\u26DE';
System.out.println(c);  // Output: ⛞

JSON:

{"text": "\u26DE"}  // Value: ⛞

Python:

char = '\u26DE'
print(char)  # Output: ⛞

Perl:

my $char = "\x{26DE}";
print $char;  # Output: ⛞

PHP:

$char = "\x{26DE}";
echo $char;  // Output: ⛞

Ruby:

char = "\u{26DE}"
puts char  # Output: ⛞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#9950;</p>  <!-- Display: ⛞ -->

HTML Hexadecimal:

<p>HTML hex: &#x26DE;</p>  <!-- Display: ⛞ -->

URL Encoding:

// ⛞ URL encoding
https://unicodefinder.com/search.php?query=%E2%9B%9E

Encodings

MD5:

4c7fb40daa27767b014cefbe9174e496

SHA1:

d83188145f853cdc8f9d86eb3d53c74080766cdb

Base64:

4pue