Unicode Finder

"扠" U+6260(CJK UNIFIED IDEOGRAPH-6260)

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

Programming

C
\u6260
JavaScript
\u6260
Java
\u6260
Json
\u6260
Python
\u6260
Perl
\x{6260}
PHP
\x{6260}
Ruby
\u{6260}
Rust
\u{6260}
Go
\u6260

Web

CSS
\006260
HtmlDecimal
扠
HtmlHexadecimal
扠
Url
%E6%89%A0

Code

MD5
53da96b1d771d95478a371fb3943abef
Sha1
d22aa2a4aaaed442f9b7d3cf7da87de72a401625
Base64
5omg

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6260';
console.log(char);  // Output: 扠

Java:

char c = '\u6260';
System.out.println(c);  // Output: 扠

JSON:

{"text": "\u6260"}  // Value: 扠

Python:

char = '\u6260'
print(char)  # Output: 扠

Perl:

my $char = "\x{6260}";
print $char;  # Output: 扠

PHP:

$char = "\x{6260}";
echo $char;  // Output: 扠

Ruby:

char = "\u{6260}"
puts char  # Output: 扠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006260";  /* Display: 扠 */
}

HTML Decimal:

<p>HTML decimal: &#25184;</p>  <!-- Display: 扠 -->

HTML Hexadecimal:

<p>HTML hex: &#x6260;</p>  <!-- Display: 扠 -->

URL Encoding:

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

Encodings

MD5:

53da96b1d771d95478a371fb3943abef

SHA1:

d22aa2a4aaaed442f9b7d3cf7da87de72a401625

Base64:

5omg