Unicode Finder

"席" U+5E2D(CJK UNIFIED IDEOGRAPH-5E2D)

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

Programming

C
\u5E2D
JavaScript
\u5E2D
Java
\u5E2D
Json
\u5E2D
Python
\u5E2D
Perl
\x{5E2D}
PHP
\x{5E2D}
Ruby
\u{5E2D}
Rust
\u{5E2D}
Go
\u5E2D

Web

CSS
\005E2D
HtmlDecimal
席
HtmlHexadecimal
席
Url
%E5%B8%AD

Code

MD5
e5951b7c0f06fc7ae973536b9210513b
Sha1
5c0dfdc8ee1d1ec7670e34c134eb1378a500f590
Base64
5bit

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E2D';
console.log(char);  // Output: 席

Java:

char c = '\u5E2D';
System.out.println(c);  // Output: 席

JSON:

{"text": "\u5E2D"}  // Value: 席

Python:

char = '\u5E2D'
print(char)  # Output: 席

Perl:

my $char = "\x{5E2D}";
print $char;  # Output: 席

PHP:

$char = "\x{5E2D}";
echo $char;  // Output: 席

Ruby:

char = "\u{5E2D}"
puts char  # Output: 席

Rust:

let c = '\u{5E2D}';
println!("{}", c);  // Output: 席

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005E2D";  /* Display: 席 */
}

HTML Decimal:

<p>HTML decimal: &#24109;</p>  <!-- Display: 席 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E2D;</p>  <!-- Display: 席 -->

URL Encoding:

// 席 URL encoding
https://unicodefinder.com/search.php?query=%E5%B8%AD

Encodings

MD5:

e5951b7c0f06fc7ae973536b9210513b

SHA1:

5c0dfdc8ee1d1ec7670e34c134eb1378a500f590

Base64:

5bit