Unicode Finder

"舰" U+8230(CJK UNIFIED IDEOGRAPH-8230)

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

Programming

C
\u8230
JavaScript
\u8230
Java
\u8230
Json
\u8230
Python
\u8230
Perl
\x{8230}
PHP
\x{8230}
Ruby
\u{8230}
Rust
\u{8230}
Go
\u8230

Web

CSS
\008230
HtmlDecimal
舰
HtmlHexadecimal
舰
Url
%E8%88%B0

Code

MD5
ba09ce1f63a3a038d79c7031be0ee880
Sha1
6fac2b0b847331628d57ec479577a9f26cd88724
Base64
6Iiw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8230';
console.log(char);  // Output: 舰

Java:

char c = '\u8230';
System.out.println(c);  // Output: 舰

JSON:

{"text": "\u8230"}  // Value: 舰

Python:

char = '\u8230'
print(char)  # Output: 舰

Perl:

my $char = "\x{8230}";
print $char;  # Output: 舰

PHP:

$char = "\x{8230}";
echo $char;  // Output: 舰

Ruby:

char = "\u{8230}"
puts char  # Output: 舰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008230";  /* Display: 舰 */
}

HTML Decimal:

<p>HTML decimal: &#33328;</p>  <!-- Display: 舰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8230;</p>  <!-- Display: 舰 -->

URL Encoding:

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

Encodings

MD5:

ba09ce1f63a3a038d79c7031be0ee880

SHA1:

6fac2b0b847331628d57ec479577a9f26cd88724

Base64:

6Iiw