Unicode Finder

"男" U+7537(CJK UNIFIED IDEOGRAPH-7537)

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

Programming

C
\u7537
JavaScript
\u7537
Java
\u7537
Json
\u7537
Python
\u7537
Perl
\x{7537}
PHP
\x{7537}
Ruby
\u{7537}
Rust
\u{7537}
Go
\u7537

Web

CSS
\007537
HtmlDecimal
男
HtmlHexadecimal
男
Url
%E7%94%B7

Code

MD5
36a4908a557796858a347c063a73ce60
Sha1
51625d909cf361d830ec25e94d9e5a02abb75302
Base64
55S3

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7537';
console.log(char);  // Output: 男

Java:

char c = '\u7537';
System.out.println(c);  // Output: 男

JSON:

{"text": "\u7537"}  // Value: 男

Python:

char = '\u7537'
print(char)  # Output: 男

Perl:

my $char = "\x{7537}";
print $char;  # Output: 男

PHP:

$char = "\x{7537}";
echo $char;  // Output: 男

Ruby:

char = "\u{7537}"
puts char  # Output: 男

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007537";  /* Display: 男 */
}

HTML Decimal:

<p>HTML decimal: &#30007;</p>  <!-- Display: 男 -->

HTML Hexadecimal:

<p>HTML hex: &#x7537;</p>  <!-- Display: 男 -->

URL Encoding:

// 男 URL encoding
https://unicodefinder.com/search.php?query=%E7%94%B7

Encodings

MD5:

36a4908a557796858a347c063a73ce60

SHA1:

51625d909cf361d830ec25e94d9e5a02abb75302

Base64:

55S3