Unicode Finder

"务" U+52A1(CJK UNIFIED IDEOGRAPH-52A1)

U+52A1
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-52A1

Programming

C
\u52A1
JavaScript
\u52A1
Java
\u52A1
Json
\u52A1
Python
\u52A1
Perl
\x{52A1}
PHP
\x{52A1}
Ruby
\u{52A1}
Rust
\u{52A1}
Go
\u52A1

Web

CSS
\0052A1
HtmlDecimal
务
HtmlHexadecimal
务
Url
%E5%8A%A1

Code

MD5
0ed3988af2157c97121a992d80b467e1
Sha1
abe03185070754150accd2d57b2752ed17bf6213
Base64
5Yqh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u52A1';
console.log(char);  // Output: 务

Java:

char c = '\u52A1';
System.out.println(c);  // Output: 务

JSON:

{"text": "\u52A1"}  // Value: 务

Python:

char = '\u52A1'
print(char)  # Output: 务

Perl:

my $char = "\x{52A1}";
print $char;  # Output: 务

PHP:

$char = "\x{52A1}";
echo $char;  // Output: 务

Ruby:

char = "\u{52A1}"
puts char  # Output: 务

Rust:

let c = '\u{52A1}';
println!("{}", c);  // Output: 务

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0052A1";  /* Display: 务 */
}

HTML Decimal:

<p>HTML decimal: &#21153;</p>  <!-- Display: 务 -->

HTML Hexadecimal:

<p>HTML hex: &#x52A1;</p>  <!-- Display: 务 -->

URL Encoding:

// 务 URL encoding
https://unicodefinder.com/search.php?query=%E5%8A%A1

Encodings

MD5:

0ed3988af2157c97121a992d80b467e1

SHA1:

abe03185070754150accd2d57b2752ed17bf6213

Base64:

5Yqh