Unicode Finder

"扱" U+6271(CJK UNIFIED IDEOGRAPH-6271)

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

Programming

C
\u6271
JavaScript
\u6271
Java
\u6271
Json
\u6271
Python
\u6271
Perl
\x{6271}
PHP
\x{6271}
Ruby
\u{6271}
Rust
\u{6271}
Go
\u6271

Web

CSS
\006271
HtmlDecimal
扱
HtmlHexadecimal
扱
Url
%E6%89%B1

Code

MD5
1ddff04702bf1f8a09c51d72b9791622
Sha1
18d049552b363ba99598e953648a3e8429834477
Base64
5omx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6271';
console.log(char);  // Output: 扱

Java:

char c = '\u6271';
System.out.println(c);  // Output: 扱

JSON:

{"text": "\u6271"}  // Value: 扱

Python:

char = '\u6271'
print(char)  # Output: 扱

Perl:

my $char = "\x{6271}";
print $char;  # Output: 扱

PHP:

$char = "\x{6271}";
echo $char;  // Output: 扱

Ruby:

char = "\u{6271}"
puts char  # Output: 扱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006271";  /* Display: 扱 */
}

HTML Decimal:

<p>HTML decimal: &#25201;</p>  <!-- Display: 扱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6271;</p>  <!-- Display: 扱 -->

URL Encoding:

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

Encodings

MD5:

1ddff04702bf1f8a09c51d72b9791622

SHA1:

18d049552b363ba99598e953648a3e8429834477

Base64:

5omx