Unicode Finder

"舢" U+8222(CJK UNIFIED IDEOGRAPH-8222)

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

Programming

C
\u8222
JavaScript
\u8222
Java
\u8222
Json
\u8222
Python
\u8222
Perl
\x{8222}
PHP
\x{8222}
Ruby
\u{8222}
Rust
\u{8222}
Go
\u8222

Web

CSS
\008222
HtmlDecimal
舢
HtmlHexadecimal
舢
Url
%E8%88%A2

Code

MD5
bc4d388425e98af2972b60e839528f8d
Sha1
781c21fcf602e99d10174470659ccb2b8d0b17c2
Base64
6Iii

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8222';
console.log(char);  // Output: 舢

Java:

char c = '\u8222';
System.out.println(c);  // Output: 舢

JSON:

{"text": "\u8222"}  // Value: 舢

Python:

char = '\u8222'
print(char)  # Output: 舢

Perl:

my $char = "\x{8222}";
print $char;  # Output: 舢

PHP:

$char = "\x{8222}";
echo $char;  // Output: 舢

Ruby:

char = "\u{8222}"
puts char  # Output: 舢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008222";  /* Display: 舢 */
}

HTML Decimal:

<p>HTML decimal: &#33314;</p>  <!-- Display: 舢 -->

HTML Hexadecimal:

<p>HTML hex: &#x8222;</p>  <!-- Display: 舢 -->

URL Encoding:

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

Encodings

MD5:

bc4d388425e98af2972b60e839528f8d

SHA1:

781c21fcf602e99d10174470659ccb2b8d0b17c2

Base64:

6Iii