Unicode Finder

"斀" U+6580(CJK UNIFIED IDEOGRAPH-6580)

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

Programming

C
\u6580
JavaScript
\u6580
Java
\u6580
Json
\u6580
Python
\u6580
Perl
\x{6580}
PHP
\x{6580}
Ruby
\u{6580}
Rust
\u{6580}
Go
\u6580

Web

CSS
\006580
HtmlDecimal
斀
HtmlHexadecimal
斀
Url
%E6%96%80

Code

MD5
081d9d35f0f937c27b2d896f69abd6e3
Sha1
41b1e7cdc306dd5c3edd6e57e300c1de70cc4f47
Base64
5paA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6580';
console.log(char);  // Output: 斀

Java:

char c = '\u6580';
System.out.println(c);  // Output: 斀

JSON:

{"text": "\u6580"}  // Value: 斀

Python:

char = '\u6580'
print(char)  # Output: 斀

Perl:

my $char = "\x{6580}";
print $char;  # Output: 斀

PHP:

$char = "\x{6580}";
echo $char;  // Output: 斀

Ruby:

char = "\u{6580}"
puts char  # Output: 斀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006580";  /* Display: 斀 */
}

HTML Decimal:

<p>HTML decimal: &#25984;</p>  <!-- Display: 斀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6580;</p>  <!-- Display: 斀 -->

URL Encoding:

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

Encodings

MD5:

081d9d35f0f937c27b2d896f69abd6e3

SHA1:

41b1e7cdc306dd5c3edd6e57e300c1de70cc4f47

Base64:

5paA