Unicode Finder

"⍋" U+234B(APL FUNCTIONAL SYMBOL DELTA STILE)

U+234B
區塊名稱
Miscellaneous Technical
名稱
APL FUNCTIONAL SYMBOL DELTA STILE

Programming

C
\u234B
JavaScript
\u234B
Java
\u234B
Json
\u234B
Python
\u234B
Perl
\x{234B}
PHP
\x{234B}
Ruby
\u{234B}
Rust
\u{234B}
Go
\u234B

Web

CSS
\00234B
HtmlDecimal
⍋
HtmlHexadecimal
⍋
Url
%E2%8D%8B

Code

MD5
1f73bf5d4fde3be82399f548d51c5ba7
Sha1
c5e03f22f08ad307b3c8aacb34af92758f4a3c86
Base64
4o2L

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u234B';
console.log(char);  // Output: ⍋

Java:

char c = '\u234B';
System.out.println(c);  // Output: ⍋

JSON:

{"text": "\u234B"}  // Value: ⍋

Python:

char = '\u234B'
print(char)  # Output: ⍋

Perl:

my $char = "\x{234B}";
print $char;  # Output: ⍋

PHP:

$char = "\x{234B}";
echo $char;  // Output: ⍋

Ruby:

char = "\u{234B}"
puts char  # Output: ⍋

Rust:

let c = '\u{234B}';
println!("{}", c);  // Output: ⍋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00234B";  /* Display: ⍋ */
}

HTML Decimal:

<p>HTML decimal: &#9035;</p>  <!-- Display: ⍋ -->

HTML Hexadecimal:

<p>HTML hex: &#x234B;</p>  <!-- Display: ⍋ -->

URL Encoding:

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

Encodings

MD5:

1f73bf5d4fde3be82399f548d51c5ba7

SHA1:

c5e03f22f08ad307b3c8aacb34af92758f4a3c86

Base64:

4o2L