Unicode Finder

"殍" U+6B8D(CJK UNIFIED IDEOGRAPH-6B8D)

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

Programming

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

Web

CSS
\006B8D
HtmlDecimal
殍
HtmlHexadecimal
殍
Url
%E6%AE%8D

Code

MD5
54eed88b61de7df3ab9f49789755860f
Sha1
98f721594ff494c0f122cb31c9c7ef74e30f718d
Base64
5q6N

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6B8D';
console.log(char);  // Output: 殍

Java:

char c = '\u6B8D';
System.out.println(c);  // Output: 殍

JSON:

{"text": "\u6B8D"}  // Value: 殍

Python:

char = '\u6B8D'
print(char)  # Output: 殍

Perl:

my $char = "\x{6B8D}";
print $char;  # Output: 殍

PHP:

$char = "\x{6B8D}";
echo $char;  // Output: 殍

Ruby:

char = "\u{6B8D}"
puts char  # Output: 殍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27533;</p>  <!-- Display: 殍 -->

HTML Hexadecimal:

<p>HTML hex: &#x6B8D;</p>  <!-- Display: 殍 -->

URL Encoding:

// 殍 URL encoding
https://unicodefinder.com/search.php?query=%E6%AE%8D

Encodings

MD5:

54eed88b61de7df3ab9f49789755860f

SHA1:

98f721594ff494c0f122cb31c9c7ef74e30f718d

Base64:

5q6N