Unicode Finder

"舥" U+8225(CJK UNIFIED IDEOGRAPH-8225)

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

Programming

C
\u8225
JavaScript
\u8225
Java
\u8225
Json
\u8225
Python
\u8225
Perl
\x{8225}
PHP
\x{8225}
Ruby
\u{8225}
Rust
\u{8225}
Go
\u8225

Web

CSS
\008225
HtmlDecimal
舥
HtmlHexadecimal
舥
Url
%E8%88%A5

Code

MD5
6d1c2bbc6be722191eaec490d0a13513
Sha1
ef527eaaaed51f67275d4a05e255f72bd3d00acd
Base64
6Iil

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8225';
console.log(char);  // Output: 舥

Java:

char c = '\u8225';
System.out.println(c);  // Output: 舥

JSON:

{"text": "\u8225"}  // Value: 舥

Python:

char = '\u8225'
print(char)  # Output: 舥

Perl:

my $char = "\x{8225}";
print $char;  # Output: 舥

PHP:

$char = "\x{8225}";
echo $char;  // Output: 舥

Ruby:

char = "\u{8225}"
puts char  # Output: 舥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008225";  /* Display: 舥 */
}

HTML Decimal:

<p>HTML decimal: &#33317;</p>  <!-- Display: 舥 -->

HTML Hexadecimal:

<p>HTML hex: &#x8225;</p>  <!-- Display: 舥 -->

URL Encoding:

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

Encodings

MD5:

6d1c2bbc6be722191eaec490d0a13513

SHA1:

ef527eaaaed51f67275d4a05e255f72bd3d00acd

Base64:

6Iil