Unicode Finder

"殫" U+6BAB(CJK UNIFIED IDEOGRAPH-6BAB)

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

Programming

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

Web

CSS
\006BAB
HtmlDecimal
殫
HtmlHexadecimal
殫
Url
%E6%AE%AB

Code

MD5
cfaf5582de6a11761092a7289a6ece19
Sha1
64512ff0e0d07d6847fb432849fc5dd376e0219e
Base64
5q6r

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BAB';
console.log(char);  // Output: 殫

Java:

char c = '\u6BAB';
System.out.println(c);  // Output: 殫

JSON:

{"text": "\u6BAB"}  // Value: 殫

Python:

char = '\u6BAB'
print(char)  # Output: 殫

Perl:

my $char = "\x{6BAB}";
print $char;  # Output: 殫

PHP:

$char = "\x{6BAB}";
echo $char;  // Output: 殫

Ruby:

char = "\u{6BAB}"
puts char  # Output: 殫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27563;</p>  <!-- Display: 殫 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BAB;</p>  <!-- Display: 殫 -->

URL Encoding:

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

Encodings

MD5:

cfaf5582de6a11761092a7289a6ece19

SHA1:

64512ff0e0d07d6847fb432849fc5dd376e0219e

Base64:

5q6r