Unicode Finder

"殽" U+6BBD(CJK UNIFIED IDEOGRAPH-6BBD)

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

Programming

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

Web

CSS
\006BBD
HtmlDecimal
殽
HtmlHexadecimal
殽
Url
%E6%AE%BD

Code

MD5
e1d0f750faca3057576d6d5fc15401b9
Sha1
82e49e27fb4a81abd935797a0c6f683ad2cc9c23
Base64
5q69

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BBD';
console.log(char);  // Output: 殽

Java:

char c = '\u6BBD';
System.out.println(c);  // Output: 殽

JSON:

{"text": "\u6BBD"}  // Value: 殽

Python:

char = '\u6BBD'
print(char)  # Output: 殽

Perl:

my $char = "\x{6BBD}";
print $char;  # Output: 殽

PHP:

$char = "\x{6BBD}";
echo $char;  // Output: 殽

Ruby:

char = "\u{6BBD}"
puts char  # Output: 殽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27581;</p>  <!-- Display: 殽 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BBD;</p>  <!-- Display: 殽 -->

URL Encoding:

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

Encodings

MD5:

e1d0f750faca3057576d6d5fc15401b9

SHA1:

82e49e27fb4a81abd935797a0c6f683ad2cc9c23

Base64:

5q69