Unicode Finder

"殳" U+6BB3(CJK UNIFIED IDEOGRAPH-6BB3)

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

Programming

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

Web

CSS
\006BB3
HtmlDecimal
殳
HtmlHexadecimal
殳
Url
%E6%AE%B3

Code

MD5
205b218cc99f64ba90ccb5a0fdfd8822
Sha1
768a265321789e54498ed3cf8519ec30e419ee97
Base64
5q6z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BB3';
console.log(char);  // Output: 殳

Java:

char c = '\u6BB3';
System.out.println(c);  // Output: 殳

JSON:

{"text": "\u6BB3"}  // Value: 殳

Python:

char = '\u6BB3'
print(char)  # Output: 殳

Perl:

my $char = "\x{6BB3}";
print $char;  # Output: 殳

PHP:

$char = "\x{6BB3}";
echo $char;  // Output: 殳

Ruby:

char = "\u{6BB3}"
puts char  # Output: 殳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27571;</p>  <!-- Display: 殳 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BB3;</p>  <!-- Display: 殳 -->

URL Encoding:

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

Encodings

MD5:

205b218cc99f64ba90ccb5a0fdfd8822

SHA1:

768a265321789e54498ed3cf8519ec30e419ee97

Base64:

5q6z