Unicode Finder

"扗" U+6257(CJK UNIFIED IDEOGRAPH-6257)

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

Programming

C
\u6257
JavaScript
\u6257
Java
\u6257
Json
\u6257
Python
\u6257
Perl
\x{6257}
PHP
\x{6257}
Ruby
\u{6257}
Rust
\u{6257}
Go
\u6257

Web

CSS
\006257
HtmlDecimal
扗
HtmlHexadecimal
扗
Url
%E6%89%97

Code

MD5
d8f0e4465ff31343e789ca02acd4b638
Sha1
4c8f24cf4a2fd123fd7bf3f8e54b0e3d6fd65ed1
Base64
5omX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6257';
console.log(char);  // Output: 扗

Java:

char c = '\u6257';
System.out.println(c);  // Output: 扗

JSON:

{"text": "\u6257"}  // Value: 扗

Python:

char = '\u6257'
print(char)  # Output: 扗

Perl:

my $char = "\x{6257}";
print $char;  # Output: 扗

PHP:

$char = "\x{6257}";
echo $char;  // Output: 扗

Ruby:

char = "\u{6257}"
puts char  # Output: 扗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006257";  /* Display: 扗 */
}

HTML Decimal:

<p>HTML decimal: &#25175;</p>  <!-- Display: 扗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6257;</p>  <!-- Display: 扗 -->

URL Encoding:

// 扗 URL encoding
https://unicodefinder.com/search.php?query=%E6%89%97

Encodings

MD5:

d8f0e4465ff31343e789ca02acd4b638

SHA1:

4c8f24cf4a2fd123fd7bf3f8e54b0e3d6fd65ed1

Base64:

5omX