Unicode Finder

"宜" U+5B9C(CJK UNIFIED IDEOGRAPH-5B9C)

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

Programming

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

Web

CSS
\005B9C
HtmlDecimal
宜
HtmlHexadecimal
宜
Url
%E5%AE%9C

Code

MD5
4a583ec15c3af46ae03f75077c00472d
Sha1
73041a6d56d7c5591b3897a28f6d6b0f2280ce2e
Base64
5a6c

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5B9C';
console.log(char);  // Output: 宜

Java:

char c = '\u5B9C';
System.out.println(c);  // Output: 宜

JSON:

{"text": "\u5B9C"}  // Value: 宜

Python:

char = '\u5B9C'
print(char)  # Output: 宜

Perl:

my $char = "\x{5B9C}";
print $char;  # Output: 宜

PHP:

$char = "\x{5B9C}";
echo $char;  // Output: 宜

Ruby:

char = "\u{5B9C}"
puts char  # Output: 宜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23452;</p>  <!-- Display: 宜 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B9C;</p>  <!-- Display: 宜 -->

URL Encoding:

// 宜 URL encoding
https://unicodefinder.com/search.php?query=%E5%AE%9C

Encodings

MD5:

4a583ec15c3af46ae03f75077c00472d

SHA1:

73041a6d56d7c5591b3897a28f6d6b0f2280ce2e

Base64:

5a6c