Unicode Finder

"舣" U+8223(CJK UNIFIED IDEOGRAPH-8223)

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

Programming

C
\u8223
JavaScript
\u8223
Java
\u8223
Json
\u8223
Python
\u8223
Perl
\x{8223}
PHP
\x{8223}
Ruby
\u{8223}
Rust
\u{8223}
Go
\u8223

Web

CSS
\008223
HtmlDecimal
舣
HtmlHexadecimal
舣
Url
%E8%88%A3

Code

MD5
563ad7e622f2e739dc889998e116c9d6
Sha1
96e999d73f502df3d879b09701484052f97af279
Base64
6Iij

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8223';
console.log(char);  // Output: 舣

Java:

char c = '\u8223';
System.out.println(c);  // Output: 舣

JSON:

{"text": "\u8223"}  // Value: 舣

Python:

char = '\u8223'
print(char)  # Output: 舣

Perl:

my $char = "\x{8223}";
print $char;  # Output: 舣

PHP:

$char = "\x{8223}";
echo $char;  // Output: 舣

Ruby:

char = "\u{8223}"
puts char  # Output: 舣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008223";  /* Display: 舣 */
}

HTML Decimal:

<p>HTML decimal: &#33315;</p>  <!-- Display: 舣 -->

HTML Hexadecimal:

<p>HTML hex: &#x8223;</p>  <!-- Display: 舣 -->

URL Encoding:

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

Encodings

MD5:

563ad7e622f2e739dc889998e116c9d6

SHA1:

96e999d73f502df3d879b09701484052f97af279

Base64:

6Iij