Unicode Finder

"殷" U+6BB7(CJK UNIFIED IDEOGRAPH-6BB7)

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

Programming

C
\u6BB7
JavaScript
\u6BB7
Java
\u6BB7
Json
\u6BB7
Python
\u6BB7
Perl
\x{6BB7}
PHP
\x{6BB7}
Ruby
\u{6BB7}
Rust
\u{6BB7}
Go
\u6BB7

Web

CSS
\006BB7
HtmlDecimal
殷
HtmlHexadecimal
殷
Url
%E6%AE%B7

Code

MD5
9cb51ab42c5d7064e8812294077be959
Sha1
436f8862d02f9a72a0103180c31af8ed81e5601a
Base64
5q63

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BB7';
console.log(char);  // Output: 殷

Java:

char c = '\u6BB7';
System.out.println(c);  // Output: 殷

JSON:

{"text": "\u6BB7"}  // Value: 殷

Python:

char = '\u6BB7'
print(char)  # Output: 殷

Perl:

my $char = "\x{6BB7}";
print $char;  # Output: 殷

PHP:

$char = "\x{6BB7}";
echo $char;  // Output: 殷

Ruby:

char = "\u{6BB7}"
puts char  # Output: 殷

Rust:

let c = '\u{6BB7}';
println!("{}", c);  // Output: 殷

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006BB7";  /* Display: 殷 */
}

HTML Decimal:

<p>HTML decimal: &#27575;</p>  <!-- Display: 殷 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BB7;</p>  <!-- Display: 殷 -->

URL Encoding:

// 殷 URL encoding
https://unicodefinder.com/search.php?query=%E6%AE%B7

Encodings

MD5:

9cb51ab42c5d7064e8812294077be959

SHA1:

436f8862d02f9a72a0103180c31af8ed81e5601a

Base64:

5q63