Unicode Finder

"斐" U+6590(CJK UNIFIED IDEOGRAPH-6590)

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

Programming

C
\u6590
JavaScript
\u6590
Java
\u6590
Json
\u6590
Python
\u6590
Perl
\x{6590}
PHP
\x{6590}
Ruby
\u{6590}
Rust
\u{6590}
Go
\u6590

Web

CSS
\006590
HtmlDecimal
斐
HtmlHexadecimal
斐
Url
%E6%96%90

Code

MD5
8e9ed0b8af7ddb54293c16f10b0888d9
Sha1
f6613173a2d357c8d1cd617465e58959a2166208
Base64
5paQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6590';
console.log(char);  // Output: 斐

Java:

char c = '\u6590';
System.out.println(c);  // Output: 斐

JSON:

{"text": "\u6590"}  // Value: 斐

Python:

char = '\u6590'
print(char)  # Output: 斐

Perl:

my $char = "\x{6590}";
print $char;  # Output: 斐

PHP:

$char = "\x{6590}";
echo $char;  // Output: 斐

Ruby:

char = "\u{6590}"
puts char  # Output: 斐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006590";  /* Display: 斐 */
}

HTML Decimal:

<p>HTML decimal: &#26000;</p>  <!-- Display: 斐 -->

HTML Hexadecimal:

<p>HTML hex: &#x6590;</p>  <!-- Display: 斐 -->

URL Encoding:

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

Encodings

MD5:

8e9ed0b8af7ddb54293c16f10b0888d9

SHA1:

f6613173a2d357c8d1cd617465e58959a2166208

Base64:

5paQ