Unicode Finder

"扲" U+6272(CJK UNIFIED IDEOGRAPH-6272)

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

Programming

C
\u6272
JavaScript
\u6272
Java
\u6272
Json
\u6272
Python
\u6272
Perl
\x{6272}
PHP
\x{6272}
Ruby
\u{6272}
Rust
\u{6272}
Go
\u6272

Web

CSS
\006272
HtmlDecimal
扲
HtmlHexadecimal
扲
Url
%E6%89%B2

Code

MD5
2515dca868b8c827d3881eed00b91d2a
Sha1
771e18611451016df0d4ea05f53d9f605001eba3
Base64
5omy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6272';
console.log(char);  // Output: 扲

Java:

char c = '\u6272';
System.out.println(c);  // Output: 扲

JSON:

{"text": "\u6272"}  // Value: 扲

Python:

char = '\u6272'
print(char)  # Output: 扲

Perl:

my $char = "\x{6272}";
print $char;  # Output: 扲

PHP:

$char = "\x{6272}";
echo $char;  // Output: 扲

Ruby:

char = "\u{6272}"
puts char  # Output: 扲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006272";  /* Display: 扲 */
}

HTML Decimal:

<p>HTML decimal: &#25202;</p>  <!-- Display: 扲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6272;</p>  <!-- Display: 扲 -->

URL Encoding:

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

Encodings

MD5:

2515dca868b8c827d3881eed00b91d2a

SHA1:

771e18611451016df0d4ea05f53d9f605001eba3

Base64:

5omy