Unicode Finder

"孶" U+5B76(CJK UNIFIED IDEOGRAPH-5B76)

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

Programming

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

Web

CSS
\005B76
HtmlDecimal
孶
HtmlHexadecimal
孶
Url
%E5%AD%B6

Code

MD5
1fcbdc653d0b0d4abebe044e90a80c52
Sha1
123b81ebab478de123e4db7fc0411a9d40692749
Base64
5a22

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5B76';
console.log(char);  // Output: 孶

Java:

char c = '\u5B76';
System.out.println(c);  // Output: 孶

JSON:

{"text": "\u5B76"}  // Value: 孶

Python:

char = '\u5B76'
print(char)  # Output: 孶

Perl:

my $char = "\x{5B76}";
print $char;  # Output: 孶

PHP:

$char = "\x{5B76}";
echo $char;  // Output: 孶

Ruby:

char = "\u{5B76}"
puts char  # Output: 孶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23414;</p>  <!-- Display: 孶 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B76;</p>  <!-- Display: 孶 -->

URL Encoding:

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

Encodings

MD5:

1fcbdc653d0b0d4abebe044e90a80c52

SHA1:

123b81ebab478de123e4db7fc0411a9d40692749

Base64:

5a22