Unicode Finder

"⍸" U+2378(APL FUNCTIONAL SYMBOL IOTA UNDERBAR)

U+2378
Tên Khối
Miscellaneous Technical
Tên
APL FUNCTIONAL SYMBOL IOTA UNDERBAR

Programming

C
\u2378
JavaScript
\u2378
Java
\u2378
Json
\u2378
Python
\u2378
Perl
\x{2378}
PHP
\x{2378}
Ruby
\u{2378}
Rust
\u{2378}
Go
\u2378

Web

CSS
\002378
HtmlDecimal
⍸
HtmlHexadecimal
⍸
Url
%E2%8D%B8

Code

MD5
dd140edd311059cbedc0cee7cd63eaa3
Sha1
4954ff5e4e76f938d0decfae4a1b1085cc02f796
Base64
4o24

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u2378';
console.log(char);  // Output: ⍸

Java:

char c = '\u2378';
System.out.println(c);  // Output: ⍸

JSON:

{"text": "\u2378"}  // Value: ⍸

Python:

char = '\u2378'
print(char)  # Output: ⍸

Perl:

my $char = "\x{2378}";
print $char;  # Output: ⍸

PHP:

$char = "\x{2378}";
echo $char;  // Output: ⍸

Ruby:

char = "\u{2378}"
puts char  # Output: ⍸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002378";  /* Display: ⍸ */
}

HTML Decimal:

<p>HTML decimal: &#9080;</p>  <!-- Display: ⍸ -->

HTML Hexadecimal:

<p>HTML hex: &#x2378;</p>  <!-- Display: ⍸ -->

URL Encoding:

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

Encodings

MD5:

dd140edd311059cbedc0cee7cd63eaa3

SHA1:

4954ff5e4e76f938d0decfae4a1b1085cc02f796

Base64:

4o24