Unicode Finder

"斒" U+6592(CJK UNIFIED IDEOGRAPH-6592)

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

Programming

C
\u6592
JavaScript
\u6592
Java
\u6592
Json
\u6592
Python
\u6592
Perl
\x{6592}
PHP
\x{6592}
Ruby
\u{6592}
Rust
\u{6592}
Go
\u6592

Web

CSS
\006592
HtmlDecimal
斒
HtmlHexadecimal
斒
Url
%E6%96%92

Code

MD5
4e336238daeaf00f0591f79d21bbe735
Sha1
5ca98f914bf086c7ae5e3b4759c1763193e93c9f
Base64
5paS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6592';
console.log(char);  // Output: 斒

Java:

char c = '\u6592';
System.out.println(c);  // Output: 斒

JSON:

{"text": "\u6592"}  // Value: 斒

Python:

char = '\u6592'
print(char)  # Output: 斒

Perl:

my $char = "\x{6592}";
print $char;  # Output: 斒

PHP:

$char = "\x{6592}";
echo $char;  // Output: 斒

Ruby:

char = "\u{6592}"
puts char  # Output: 斒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006592";  /* Display: 斒 */
}

HTML Decimal:

<p>HTML decimal: &#26002;</p>  <!-- Display: 斒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6592;</p>  <!-- Display: 斒 -->

URL Encoding:

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

Encodings

MD5:

4e336238daeaf00f0591f79d21bbe735

SHA1:

5ca98f914bf086c7ae5e3b4759c1763193e93c9f

Base64:

5paS