Unicode Finder

"舱" U+8231(CJK UNIFIED IDEOGRAPH-8231)

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

Programming

C
\u8231
JavaScript
\u8231
Java
\u8231
Json
\u8231
Python
\u8231
Perl
\x{8231}
PHP
\x{8231}
Ruby
\u{8231}
Rust
\u{8231}
Go
\u8231

Web

CSS
\008231
HtmlDecimal
舱
HtmlHexadecimal
舱
Url
%E8%88%B1

Code

MD5
586d35b39f1b8d8565931778cb3ea7a5
Sha1
6eae49cb20b4d6029e57fc1874db4d9038b27ca9
Base64
6Iix

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8231';
console.log(char);  // Output: 舱

Java:

char c = '\u8231';
System.out.println(c);  // Output: 舱

JSON:

{"text": "\u8231"}  // Value: 舱

Python:

char = '\u8231'
print(char)  # Output: 舱

Perl:

my $char = "\x{8231}";
print $char;  # Output: 舱

PHP:

$char = "\x{8231}";
echo $char;  // Output: 舱

Ruby:

char = "\u{8231}"
puts char  # Output: 舱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008231";  /* Display: 舱 */
}

HTML Decimal:

<p>HTML decimal: &#33329;</p>  <!-- Display: 舱 -->

HTML Hexadecimal:

<p>HTML hex: &#x8231;</p>  <!-- Display: 舱 -->

URL Encoding:

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

Encodings

MD5:

586d35b39f1b8d8565931778cb3ea7a5

SHA1:

6eae49cb20b4d6029e57fc1874db4d9038b27ca9

Base64:

6Iix