Unicode Finder

"舟" U+821F(CJK UNIFIED IDEOGRAPH-821F)

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

Programming

C
\u821F
JavaScript
\u821F
Java
\u821F
Json
\u821F
Python
\u821F
Perl
\x{821F}
PHP
\x{821F}
Ruby
\u{821F}
Rust
\u{821F}
Go
\u821F

Web

CSS
\00821F
HtmlDecimal
舟
HtmlHexadecimal
舟
Url
%E8%88%9F

Code

MD5
6af1651909129d22d067102c67919efc
Sha1
477d0f8152b355720160d5bb174e2da91dbf2427
Base64
6Iif

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u821F';
console.log(char);  // Output: 舟

Java:

char c = '\u821F';
System.out.println(c);  // Output: 舟

JSON:

{"text": "\u821F"}  // Value: 舟

Python:

char = '\u821F'
print(char)  # Output: 舟

Perl:

my $char = "\x{821F}";
print $char;  # Output: 舟

PHP:

$char = "\x{821F}";
echo $char;  // Output: 舟

Ruby:

char = "\u{821F}"
puts char  # Output: 舟

Rust:

let c = '\u{821F}';
println!("{}", c);  // Output: 舟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00821F";  /* Display: 舟 */
}

HTML Decimal:

<p>HTML decimal: &#33311;</p>  <!-- Display: 舟 -->

HTML Hexadecimal:

<p>HTML hex: &#x821F;</p>  <!-- Display: 舟 -->

URL Encoding:

// 舟 URL encoding
https://unicodefinder.com/search.php?query=%E8%88%9F

Encodings

MD5:

6af1651909129d22d067102c67919efc

SHA1:

477d0f8152b355720160d5bb174e2da91dbf2427

Base64:

6Iif