Unicode Finder

"扫" U+626B(CJK UNIFIED IDEOGRAPH-626B)

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

Programming

C
\u626B
JavaScript
\u626B
Java
\u626B
Json
\u626B
Python
\u626B
Perl
\x{626B}
PHP
\x{626B}
Ruby
\u{626B}
Rust
\u{626B}
Go
\u626B

Web

CSS
\00626B
HtmlDecimal
扫
HtmlHexadecimal
扫
Url
%E6%89%AB

Code

MD5
4b5b1d656bac0d41b9703c72f2665b0f
Sha1
a84f903a93a1217c86b3a3b7909438c318a55e28
Base64
5omr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u626B';
console.log(char);  // Output: 扫

Java:

char c = '\u626B';
System.out.println(c);  // Output: 扫

JSON:

{"text": "\u626B"}  // Value: 扫

Python:

char = '\u626B'
print(char)  # Output: 扫

Perl:

my $char = "\x{626B}";
print $char;  # Output: 扫

PHP:

$char = "\x{626B}";
echo $char;  // Output: 扫

Ruby:

char = "\u{626B}"
puts char  # Output: 扫

Rust:

let c = '\u{626B}';
println!("{}", c);  // Output: 扫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00626B";  /* Display: 扫 */
}

HTML Decimal:

<p>HTML decimal: &#25195;</p>  <!-- Display: 扫 -->

HTML Hexadecimal:

<p>HTML hex: &#x626B;</p>  <!-- Display: 扫 -->

URL Encoding:

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

Encodings

MD5:

4b5b1d656bac0d41b9703c72f2665b0f

SHA1:

a84f903a93a1217c86b3a3b7909438c318a55e28

Base64:

5omr