Unicode Finder

"扂" U+6242(CJK UNIFIED IDEOGRAPH-6242)

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

Programming

C
\u6242
JavaScript
\u6242
Java
\u6242
Json
\u6242
Python
\u6242
Perl
\x{6242}
PHP
\x{6242}
Ruby
\u{6242}
Rust
\u{6242}
Go
\u6242

Web

CSS
\006242
HtmlDecimal
扂
HtmlHexadecimal
扂
Url
%E6%89%82

Code

MD5
52646ef0b320df13b498337567a73c54
Sha1
05d630f62c546959a54e3d83a6549199e865ab15
Base64
5omC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6242';
console.log(char);  // Output: 扂

Java:

char c = '\u6242';
System.out.println(c);  // Output: 扂

JSON:

{"text": "\u6242"}  // Value: 扂

Python:

char = '\u6242'
print(char)  # Output: 扂

Perl:

my $char = "\x{6242}";
print $char;  # Output: 扂

PHP:

$char = "\x{6242}";
echo $char;  // Output: 扂

Ruby:

char = "\u{6242}"
puts char  # Output: 扂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006242";  /* Display: 扂 */
}

HTML Decimal:

<p>HTML decimal: &#25154;</p>  <!-- Display: 扂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6242;</p>  <!-- Display: 扂 -->

URL Encoding:

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

Encodings

MD5:

52646ef0b320df13b498337567a73c54

SHA1:

05d630f62c546959a54e3d83a6549199e865ab15

Base64:

5omC