Unicode Finder

"⍧" U+2367(APL FUNCTIONAL SYMBOL LEFT SHOE STILE)

U+2367
שם בלוק
Miscellaneous Technical
שם
APL FUNCTIONAL SYMBOL LEFT SHOE STILE

Programming

C
\u2367
JavaScript
\u2367
Java
\u2367
Json
\u2367
Python
\u2367
Perl
\x{2367}
PHP
\x{2367}
Ruby
\u{2367}
Rust
\u{2367}
Go
\u2367

Web

CSS
\002367
HtmlDecimal
⍧
HtmlHexadecimal
⍧
Url
%E2%8D%A7

Code

MD5
ac3ab077082fc6c47461c8aa5eb301af
Sha1
7d8c3f7d885e1af979be5d2e7f50288575751fc8
Base64
4o2n

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u2367';
console.log(char);  // Output: ⍧

Java:

char c = '\u2367';
System.out.println(c);  // Output: ⍧

JSON:

{"text": "\u2367"}  // Value: ⍧

Python:

char = '\u2367'
print(char)  # Output: ⍧

Perl:

my $char = "\x{2367}";
print $char;  # Output: ⍧

PHP:

$char = "\x{2367}";
echo $char;  // Output: ⍧

Ruby:

char = "\u{2367}"
puts char  # Output: ⍧

Rust:

let c = '\u{2367}';
println!("{}", c);  // Output: ⍧

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002367";  /* Display: ⍧ */
}

HTML Decimal:

<p>HTML decimal: &#9063;</p>  <!-- Display: ⍧ -->

HTML Hexadecimal:

<p>HTML hex: &#x2367;</p>  <!-- Display: ⍧ -->

URL Encoding:

// ⍧ URL encoding
https://unicodefinder.com/search.php?query=%E2%8D%A7

Encodings

MD5:

ac3ab077082fc6c47461c8aa5eb301af

SHA1:

7d8c3f7d885e1af979be5d2e7f50288575751fc8

Base64:

4o2n