Unicode Finder

"孾" U+5B7E(CJK UNIFIED IDEOGRAPH-5B7E)

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

Programming

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

Web

CSS
\005B7E
HtmlDecimal
孾
HtmlHexadecimal
孾
Url
%E5%AD%BE

Code

MD5
f93af6f76c7beff88dcd860b56788871
Sha1
62076c6b2a85014dc96b552ce7ab8f9e1dc3b127
Base64
5a2+

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5B7E';
console.log(char);  // Output: 孾

Java:

char c = '\u5B7E';
System.out.println(c);  // Output: 孾

JSON:

{"text": "\u5B7E"}  // Value: 孾

Python:

char = '\u5B7E'
print(char)  # Output: 孾

Perl:

my $char = "\x{5B7E}";
print $char;  # Output: 孾

PHP:

$char = "\x{5B7E}";
echo $char;  // Output: 孾

Ruby:

char = "\u{5B7E}"
puts char  # Output: 孾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23422;</p>  <!-- Display: 孾 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B7E;</p>  <!-- Display: 孾 -->

URL Encoding:

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

Encodings

MD5:

f93af6f76c7beff88dcd860b56788871

SHA1:

62076c6b2a85014dc96b552ce7ab8f9e1dc3b127

Base64:

5a2+