Unicode Finder

"包" U+5305(CJK UNIFIED IDEOGRAPH-5305)

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

Programming

C
\u5305
JavaScript
\u5305
Java
\u5305
Json
\u5305
Python
\u5305
Perl
\x{5305}
PHP
\x{5305}
Ruby
\u{5305}
Rust
\u{5305}
Go
\u5305

Web

CSS
\005305
HtmlDecimal
包
HtmlHexadecimal
包
Url
%E5%8C%85

Code

MD5
5442dfce9bae4548d3851889266c5381
Sha1
7e396634c6ced0074b335fc1c9d69ea61d228359
Base64
5YyF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5305';
console.log(char);  // Output: 包

Java:

char c = '\u5305';
System.out.println(c);  // Output: 包

JSON:

{"text": "\u5305"}  // Value: 包

Python:

char = '\u5305'
print(char)  # Output: 包

Perl:

my $char = "\x{5305}";
print $char;  # Output: 包

PHP:

$char = "\x{5305}";
echo $char;  // Output: 包

Ruby:

char = "\u{5305}"
puts char  # Output: 包

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005305";  /* Display: 包 */
}

HTML Decimal:

<p>HTML decimal: &#21253;</p>  <!-- Display: 包 -->

HTML Hexadecimal:

<p>HTML hex: &#x5305;</p>  <!-- Display: 包 -->

URL Encoding:

// 包 URL encoding
https://unicodefinder.com/search.php?query=%E5%8C%85

Encodings

MD5:

5442dfce9bae4548d3851889266c5381

SHA1:

7e396634c6ced0074b335fc1c9d69ea61d228359

Base64:

5YyF