Unicode Finder

"斆" U+6586(CJK UNIFIED IDEOGRAPH-6586)

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

Programming

C
\u6586
JavaScript
\u6586
Java
\u6586
Json
\u6586
Python
\u6586
Perl
\x{6586}
PHP
\x{6586}
Ruby
\u{6586}
Rust
\u{6586}
Go
\u6586

Web

CSS
\006586
HtmlDecimal
斆
HtmlHexadecimal
斆
Url
%E6%96%86

Code

MD5
a166146795f78df7b0e3f71fd3608e33
Sha1
187f1da891a909edb22f688445cb0d5d0d6da241
Base64
5paG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6586';
console.log(char);  // Output: 斆

Java:

char c = '\u6586';
System.out.println(c);  // Output: 斆

JSON:

{"text": "\u6586"}  // Value: 斆

Python:

char = '\u6586'
print(char)  # Output: 斆

Perl:

my $char = "\x{6586}";
print $char;  # Output: 斆

PHP:

$char = "\x{6586}";
echo $char;  // Output: 斆

Ruby:

char = "\u{6586}"
puts char  # Output: 斆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006586";  /* Display: 斆 */
}

HTML Decimal:

<p>HTML decimal: &#25990;</p>  <!-- Display: 斆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6586;</p>  <!-- Display: 斆 -->

URL Encoding:

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

Encodings

MD5:

a166146795f78df7b0e3f71fd3608e33

SHA1:

187f1da891a909edb22f688445cb0d5d0d6da241

Base64:

5paG