Unicode Finder

"斁" U+6581(CJK UNIFIED IDEOGRAPH-6581)

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

Programming

C
\u6581
JavaScript
\u6581
Java
\u6581
Json
\u6581
Python
\u6581
Perl
\x{6581}
PHP
\x{6581}
Ruby
\u{6581}
Rust
\u{6581}
Go
\u6581

Web

CSS
\006581
HtmlDecimal
斁
HtmlHexadecimal
斁
Url
%E6%96%81

Code

MD5
64631c7f1c0b4c9d54e32360acd45362
Sha1
e2f9aa97237564e5aa7aacf2c7f8ccc42f10e363
Base64
5paB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6581';
console.log(char);  // Output: 斁

Java:

char c = '\u6581';
System.out.println(c);  // Output: 斁

JSON:

{"text": "\u6581"}  // Value: 斁

Python:

char = '\u6581'
print(char)  # Output: 斁

Perl:

my $char = "\x{6581}";
print $char;  # Output: 斁

PHP:

$char = "\x{6581}";
echo $char;  // Output: 斁

Ruby:

char = "\u{6581}"
puts char  # Output: 斁

Rust:

let c = '\u{6581}';
println!("{}", c);  // Output: 斁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006581";  /* Display: 斁 */
}

HTML Decimal:

<p>HTML decimal: &#25985;</p>  <!-- Display: 斁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6581;</p>  <!-- Display: 斁 -->

URL Encoding:

// 斁 URL encoding
https://unicodefinder.com/search.php?query=%E6%96%81

Encodings

MD5:

64631c7f1c0b4c9d54e32360acd45362

SHA1:

e2f9aa97237564e5aa7aacf2c7f8ccc42f10e363

Base64:

5paB