Unicode Finder

"舓" U+8213(CJK UNIFIED IDEOGRAPH-8213)

U+8213
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8213

Programming

C
\u8213
JavaScript
\u8213
Java
\u8213
Json
\u8213
Python
\u8213
Perl
\x{8213}
PHP
\x{8213}
Ruby
\u{8213}
Rust
\u{8213}
Go
\u8213

Web

CSS
\008213
HtmlDecimal
舓
HtmlHexadecimal
舓
Url
%E8%88%93

Code

MD5
0dc07274bac1ac2d180e8b19d957a4b7
Sha1
05ae94de82336c638d43feca9b840d0448a0e46b
Base64
6IiT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8213';
console.log(char);  // Output: 舓

Java:

char c = '\u8213';
System.out.println(c);  // Output: 舓

JSON:

{"text": "\u8213"}  // Value: 舓

Python:

char = '\u8213'
print(char)  # Output: 舓

Perl:

my $char = "\x{8213}";
print $char;  # Output: 舓

PHP:

$char = "\x{8213}";
echo $char;  // Output: 舓

Ruby:

char = "\u{8213}"
puts char  # Output: 舓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008213";  /* Display: 舓 */
}

HTML Decimal:

<p>HTML decimal: &#33299;</p>  <!-- Display: 舓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8213;</p>  <!-- Display: 舓 -->

URL Encoding:

// 舓 URL encoding
https://unicodefinder.com/search.php?query=%E8%88%93

Encodings

MD5:

0dc07274bac1ac2d180e8b19d957a4b7

SHA1:

05ae94de82336c638d43feca9b840d0448a0e46b

Base64:

6IiT