Unicode Finder

"務" U+52D9(CJK UNIFIED IDEOGRAPH-52D9)

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

Programming

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

Web

CSS
\0052D9
HtmlDecimal
務
HtmlHexadecimal
務
Url
%E5%8B%99

Code

MD5
2d3f425ccdfb33ed690eb17cd492e80e
Sha1
4a61b43d21a7269bf91711b4a32ececf4a34560e
Base64
5YuZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u52D9';
console.log(char);  // Output: 務

Java:

char c = '\u52D9';
System.out.println(c);  // Output: 務

JSON:

{"text": "\u52D9"}  // Value: 務

Python:

char = '\u52D9'
print(char)  # Output: 務

Perl:

my $char = "\x{52D9}";
print $char;  # Output: 務

PHP:

$char = "\x{52D9}";
echo $char;  // Output: 務

Ruby:

char = "\u{52D9}"
puts char  # Output: 務

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21209;</p>  <!-- Display: 務 -->

HTML Hexadecimal:

<p>HTML hex: &#x52D9;</p>  <!-- Display: 務 -->

URL Encoding:

// 務 URL encoding
https://unicodefinder.com/search.php?query=%E5%8B%99

Encodings

MD5:

2d3f425ccdfb33ed690eb17cd492e80e

SHA1:

4a61b43d21a7269bf91711b4a32ececf4a34560e

Base64:

5YuZ