Unicode Finder

"舡" U+8221(CJK UNIFIED IDEOGRAPH-8221)

U+8221
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8221

Programming

C
\u8221
JavaScript
\u8221
Java
\u8221
Json
\u8221
Python
\u8221
Perl
\x{8221}
PHP
\x{8221}
Ruby
\u{8221}
Rust
\u{8221}
Go
\u8221

Web

CSS
\008221
HtmlDecimal
舡
HtmlHexadecimal
舡
Url
%E8%88%A1

Code

MD5
47cd4ea81631e49b86eb72c36bdb8185
Sha1
b54cf2a59ff5844efa8a0d15adbea56eeadde022
Base64
6Iih

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8221';
console.log(char);  // Output: 舡

Java:

char c = '\u8221';
System.out.println(c);  // Output: 舡

JSON:

{"text": "\u8221"}  // Value: 舡

Python:

char = '\u8221'
print(char)  # Output: 舡

Perl:

my $char = "\x{8221}";
print $char;  # Output: 舡

PHP:

$char = "\x{8221}";
echo $char;  // Output: 舡

Ruby:

char = "\u{8221}"
puts char  # Output: 舡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008221";  /* Display: 舡 */
}

HTML Decimal:

<p>HTML decimal: &#33313;</p>  <!-- Display: 舡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8221;</p>  <!-- Display: 舡 -->

URL Encoding:

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

Encodings

MD5:

47cd4ea81631e49b86eb72c36bdb8185

SHA1:

b54cf2a59ff5844efa8a0d15adbea56eeadde022

Base64:

6Iih