Unicode Finder

"殔" U+6B94(CJK UNIFIED IDEOGRAPH-6B94)

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

Programming

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

Web

CSS
\006B94
HtmlDecimal
殔
HtmlHexadecimal
殔
Url
%E6%AE%94

Code

MD5
eff9a5d155c71eb4d9a7b482f01768c7
Sha1
ea744df990eff39cf01e5924a009607e55767bd1
Base64
5q6U

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6B94';
console.log(char);  // Output: 殔

Java:

char c = '\u6B94';
System.out.println(c);  // Output: 殔

JSON:

{"text": "\u6B94"}  // Value: 殔

Python:

char = '\u6B94'
print(char)  # Output: 殔

Perl:

my $char = "\x{6B94}";
print $char;  # Output: 殔

PHP:

$char = "\x{6B94}";
echo $char;  // Output: 殔

Ruby:

char = "\u{6B94}"
puts char  # Output: 殔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27540;</p>  <!-- Display: 殔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6B94;</p>  <!-- Display: 殔 -->

URL Encoding:

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

Encodings

MD5:

eff9a5d155c71eb4d9a7b482f01768c7

SHA1:

ea744df990eff39cf01e5924a009607e55767bd1

Base64:

5q6U