Unicode Finder

"⎷" U+23B7(RADICAL SYMBOL BOTTOM)

U+23B7
區塊名稱
Miscellaneous Technical
名稱
RADICAL SYMBOL BOTTOM

Programming

C
\u23B7
JavaScript
\u23B7
Java
\u23B7
Json
\u23B7
Python
\u23B7
Perl
\x{23B7}
PHP
\x{23B7}
Ruby
\u{23B7}
Rust
\u{23B7}
Go
\u23B7

Web

CSS
\0023B7
HtmlDecimal
⎷
HtmlHexadecimal
⎷
Url
%E2%8E%B7

Code

MD5
281a5813315db87e8fddef34bfaeb8be
Sha1
843745baff3580d3122d99b704341a60734304f1
Base64
4o63

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u23B7';
console.log(char);  // Output: ⎷

Java:

char c = '\u23B7';
System.out.println(c);  // Output: ⎷

JSON:

{"text": "\u23B7"}  // Value: ⎷

Python:

char = '\u23B7'
print(char)  # Output: ⎷

Perl:

my $char = "\x{23B7}";
print $char;  # Output: ⎷

PHP:

$char = "\x{23B7}";
echo $char;  // Output: ⎷

Ruby:

char = "\u{23B7}"
puts char  # Output: ⎷

Rust:

let c = '\u{23B7}';
println!("{}", c);  // Output: ⎷

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0023B7";  /* Display: ⎷ */
}

HTML Decimal:

<p>HTML decimal: &#9143;</p>  <!-- Display: ⎷ -->

HTML Hexadecimal:

<p>HTML hex: &#x23B7;</p>  <!-- Display: ⎷ -->

URL Encoding:

// ⎷ URL encoding
https://unicodefinder.com/search.php?query=%E2%8E%B7

Encodings

MD5:

281a5813315db87e8fddef34bfaeb8be

SHA1:

843745baff3580d3122d99b704341a60734304f1

Base64:

4o63