Unicode Finder

"舃" U+8203(CJK UNIFIED IDEOGRAPH-8203)

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

Programming

C
\u8203
JavaScript
\u8203
Java
\u8203
Json
\u8203
Python
\u8203
Perl
\x{8203}
PHP
\x{8203}
Ruby
\u{8203}
Rust
\u{8203}
Go
\u8203

Web

CSS
\008203
HtmlDecimal
舃
HtmlHexadecimal
舃
Url
%E8%88%83

Code

MD5
82b6083f305016025850a635560bee56
Sha1
7bf7598e4f241db530fce28e9c7dfd7ff805841a
Base64
6IiD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8203';
console.log(char);  // Output: 舃

Java:

char c = '\u8203';
System.out.println(c);  // Output: 舃

JSON:

{"text": "\u8203"}  // Value: 舃

Python:

char = '\u8203'
print(char)  # Output: 舃

Perl:

my $char = "\x{8203}";
print $char;  # Output: 舃

PHP:

$char = "\x{8203}";
echo $char;  // Output: 舃

Ruby:

char = "\u{8203}"
puts char  # Output: 舃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008203";  /* Display: 舃 */
}

HTML Decimal:

<p>HTML decimal: &#33283;</p>  <!-- Display: 舃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8203;</p>  <!-- Display: 舃 -->

URL Encoding:

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

Encodings

MD5:

82b6083f305016025850a635560bee56

SHA1:

7bf7598e4f241db530fce28e9c7dfd7ff805841a

Base64:

6IiD