Unicode Finder

"舩" U+8229(CJK UNIFIED IDEOGRAPH-8229)

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

Programming

C
\u8229
JavaScript
\u8229
Java
\u8229
Json
\u8229
Python
\u8229
Perl
\x{8229}
PHP
\x{8229}
Ruby
\u{8229}
Rust
\u{8229}
Go
\u8229

Web

CSS
\008229
HtmlDecimal
舩
HtmlHexadecimal
舩
Url
%E8%88%A9

Code

MD5
0ab4af1074d0b662be6171d537a3142f
Sha1
49feea6c228d73827439b6b6a6d71b0fa8fe622d
Base64
6Iip

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8229';
console.log(char);  // Output: 舩

Java:

char c = '\u8229';
System.out.println(c);  // Output: 舩

JSON:

{"text": "\u8229"}  // Value: 舩

Python:

char = '\u8229'
print(char)  # Output: 舩

Perl:

my $char = "\x{8229}";
print $char;  # Output: 舩

PHP:

$char = "\x{8229}";
echo $char;  // Output: 舩

Ruby:

char = "\u{8229}"
puts char  # Output: 舩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008229";  /* Display: 舩 */
}

HTML Decimal:

<p>HTML decimal: &#33321;</p>  <!-- Display: 舩 -->

HTML Hexadecimal:

<p>HTML hex: &#x8229;</p>  <!-- Display: 舩 -->

URL Encoding:

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

Encodings

MD5:

0ab4af1074d0b662be6171d537a3142f

SHA1:

49feea6c228d73827439b6b6a6d71b0fa8fe622d

Base64:

6Iip