Unicode Finder

"扅" U+6245(CJK UNIFIED IDEOGRAPH-6245)

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

Programming

C
\u6245
JavaScript
\u6245
Java
\u6245
Json
\u6245
Python
\u6245
Perl
\x{6245}
PHP
\x{6245}
Ruby
\u{6245}
Rust
\u{6245}
Go
\u6245

Web

CSS
\006245
HtmlDecimal
扅
HtmlHexadecimal
扅
Url
%E6%89%85

Code

MD5
83e2cee389a45ce363d8870120a5e305
Sha1
9dde70f32c7938ae9122a26840405ffa28080523
Base64
5omF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6245';
console.log(char);  // Output: 扅

Java:

char c = '\u6245';
System.out.println(c);  // Output: 扅

JSON:

{"text": "\u6245"}  // Value: 扅

Python:

char = '\u6245'
print(char)  # Output: 扅

Perl:

my $char = "\x{6245}";
print $char;  # Output: 扅

PHP:

$char = "\x{6245}";
echo $char;  // Output: 扅

Ruby:

char = "\u{6245}"
puts char  # Output: 扅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006245";  /* Display: 扅 */
}

HTML Decimal:

<p>HTML decimal: &#25157;</p>  <!-- Display: 扅 -->

HTML Hexadecimal:

<p>HTML hex: &#x6245;</p>  <!-- Display: 扅 -->

URL Encoding:

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

Encodings

MD5:

83e2cee389a45ce363d8870120a5e305

SHA1:

9dde70f32c7938ae9122a26840405ffa28080523

Base64:

5omF