Unicode Finder

"⚿" U+26BF(SQUARED KEY)

U+26BF
Block Name
Miscellaneous Symbols
Name
SQUARED KEY

Programming

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

Web

CSS
\0026BF
HtmlDecimal
⚿
HtmlHexadecimal
⚿
Url
%E2%9A%BF

Code

MD5
0a2d09438bdb2db425381018a0d8c658
Sha1
ba50afc0692f9029276d5c3574dc83b3db96d430
Base64
4pq/

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u26BF';
console.log(char);  // Output: ⚿

Java:

char c = '\u26BF';
System.out.println(c);  // Output: ⚿

JSON:

{"text": "\u26BF"}  // Value: ⚿

Python:

char = '\u26BF'
print(char)  # Output: ⚿

Perl:

my $char = "\x{26BF}";
print $char;  # Output: ⚿

PHP:

$char = "\x{26BF}";
echo $char;  // Output: ⚿

Ruby:

char = "\u{26BF}"
puts char  # Output: ⚿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#9919;</p>  <!-- Display: ⚿ -->

HTML Hexadecimal:

<p>HTML hex: &#x26BF;</p>  <!-- Display: ⚿ -->

URL Encoding:

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

Encodings

MD5:

0a2d09438bdb2db425381018a0d8c658

SHA1:

ba50afc0692f9029276d5c3574dc83b3db96d430

Base64:

4pq/