Unicode Finder

"殯" U+6BAF(CJK UNIFIED IDEOGRAPH-6BAF)

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

Programming

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

Web

CSS
\006BAF
HtmlDecimal
殯
HtmlHexadecimal
殯
Url
%E6%AE%AF

Code

MD5
a8c46ee9707d81926692b04e20c0aeb9
Sha1
c2c89e70060aa9e4fcdde438cc71b6578d0b1a6f
Base64
5q6v

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BAF';
console.log(char);  // Output: 殯

Java:

char c = '\u6BAF';
System.out.println(c);  // Output: 殯

JSON:

{"text": "\u6BAF"}  // Value: 殯

Python:

char = '\u6BAF'
print(char)  # Output: 殯

Perl:

my $char = "\x{6BAF}";
print $char;  # Output: 殯

PHP:

$char = "\x{6BAF}";
echo $char;  // Output: 殯

Ruby:

char = "\u{6BAF}"
puts char  # Output: 殯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27567;</p>  <!-- Display: 殯 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BAF;</p>  <!-- Display: 殯 -->

URL Encoding:

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

Encodings

MD5:

a8c46ee9707d81926692b04e20c0aeb9

SHA1:

c2c89e70060aa9e4fcdde438cc71b6578d0b1a6f

Base64:

5q6v