Unicode Finder

"扢" U+6262(CJK UNIFIED IDEOGRAPH-6262)

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

Programming

C
\u6262
JavaScript
\u6262
Java
\u6262
Json
\u6262
Python
\u6262
Perl
\x{6262}
PHP
\x{6262}
Ruby
\u{6262}
Rust
\u{6262}
Go
\u6262

Web

CSS
\006262
HtmlDecimal
扢
HtmlHexadecimal
扢
Url
%E6%89%A2

Code

MD5
45882b4437eb79ace54fd2abd1f369cb
Sha1
220d173df66c08d1f6a99ae2bc9177c0aada240d
Base64
5omi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6262';
console.log(char);  // Output: 扢

Java:

char c = '\u6262';
System.out.println(c);  // Output: 扢

JSON:

{"text": "\u6262"}  // Value: 扢

Python:

char = '\u6262'
print(char)  # Output: 扢

Perl:

my $char = "\x{6262}";
print $char;  # Output: 扢

PHP:

$char = "\x{6262}";
echo $char;  // Output: 扢

Ruby:

char = "\u{6262}"
puts char  # Output: 扢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006262";  /* Display: 扢 */
}

HTML Decimal:

<p>HTML decimal: &#25186;</p>  <!-- Display: 扢 -->

HTML Hexadecimal:

<p>HTML hex: &#x6262;</p>  <!-- Display: 扢 -->

URL Encoding:

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

Encodings

MD5:

45882b4437eb79ace54fd2abd1f369cb

SHA1:

220d173df66c08d1f6a99ae2bc9177c0aada240d

Base64:

5omi