Unicode Finder

"扩" U+6269(CJK UNIFIED IDEOGRAPH-6269)

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

Programming

C
\u6269
JavaScript
\u6269
Java
\u6269
Json
\u6269
Python
\u6269
Perl
\x{6269}
PHP
\x{6269}
Ruby
\u{6269}
Rust
\u{6269}
Go
\u6269

Web

CSS
\006269
HtmlDecimal
扩
HtmlHexadecimal
扩
Url
%E6%89%A9

Code

MD5
762e74221dd5465816e07f7fcaed36d3
Sha1
6186f8ddb4a142baa7fe30820db885c0b800c603
Base64
5omp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6269';
console.log(char);  // Output: 扩

Java:

char c = '\u6269';
System.out.println(c);  // Output: 扩

JSON:

{"text": "\u6269"}  // Value: 扩

Python:

char = '\u6269'
print(char)  # Output: 扩

Perl:

my $char = "\x{6269}";
print $char;  # Output: 扩

PHP:

$char = "\x{6269}";
echo $char;  // Output: 扩

Ruby:

char = "\u{6269}"
puts char  # Output: 扩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006269";  /* Display: 扩 */
}

HTML Decimal:

<p>HTML decimal: &#25193;</p>  <!-- Display: 扩 -->

HTML Hexadecimal:

<p>HTML hex: &#x6269;</p>  <!-- Display: 扩 -->

URL Encoding:

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

Encodings

MD5:

762e74221dd5465816e07f7fcaed36d3

SHA1:

6186f8ddb4a142baa7fe30820db885c0b800c603

Base64:

5omp