Unicode Finder

"⌀" U+2300(DIAMETER SIGN)

U+2300
區塊名稱
Miscellaneous Technical
名稱
DIAMETER SIGN

Programming

C
\u2300
JavaScript
\u2300
Java
\u2300
Json
\u2300
Python
\u2300
Perl
\x{2300}
PHP
\x{2300}
Ruby
\u{2300}
Rust
\u{2300}
Go
\u2300

Web

CSS
\002300
HtmlDecimal
⌀
HtmlHexadecimal
⌀
Url
%E2%8C%80

Code

MD5
26916b17815ec6e2f27f2683d61e20e6
Sha1
7bf6761efbf90860fa66c32ae77e7d6358887a77
Base64
4oyA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u2300';
console.log(char);  // Output: ⌀

Java:

char c = '\u2300';
System.out.println(c);  // Output: ⌀

JSON:

{"text": "\u2300"}  // Value: ⌀

Python:

char = '\u2300'
print(char)  # Output: ⌀

Perl:

my $char = "\x{2300}";
print $char;  # Output: ⌀

PHP:

$char = "\x{2300}";
echo $char;  // Output: ⌀

Ruby:

char = "\u{2300}"
puts char  # Output: ⌀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002300";  /* Display: ⌀ */
}

HTML Decimal:

<p>HTML decimal: &#8960;</p>  <!-- Display: ⌀ -->

HTML Hexadecimal:

<p>HTML hex: &#x2300;</p>  <!-- Display: ⌀ -->

URL Encoding:

// ⌀ URL encoding
https://unicodefinder.com/search.php?query=%E2%8C%80

Encodings

MD5:

26916b17815ec6e2f27f2683d61e20e6

SHA1:

7bf6761efbf90860fa66c32ae77e7d6358887a77

Base64:

4oyA