Unicode Finder

"産" U+7523(CJK UNIFIED IDEOGRAPH-7523)

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

Programming

C
\u7523
JavaScript
\u7523
Java
\u7523
Json
\u7523
Python
\u7523
Perl
\x{7523}
PHP
\x{7523}
Ruby
\u{7523}
Rust
\u{7523}
Go
\u7523

Web

CSS
\007523
HtmlDecimal
産
HtmlHexadecimal
産
Url
%E7%94%A3

Code

MD5
761ab600e75d33d3de2a6e9e6a2e71ba
Sha1
08d57eaeb7256ecc9913a4ab55e9150d57ac2ecc
Base64
55Sj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7523';
console.log(char);  // Output: 産

Java:

char c = '\u7523';
System.out.println(c);  // Output: 産

JSON:

{"text": "\u7523"}  // Value: 産

Python:

char = '\u7523'
print(char)  # Output: 産

Perl:

my $char = "\x{7523}";
print $char;  # Output: 産

PHP:

$char = "\x{7523}";
echo $char;  // Output: 産

Ruby:

char = "\u{7523}"
puts char  # Output: 産

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007523";  /* Display: 産 */
}

HTML Decimal:

<p>HTML decimal: &#29987;</p>  <!-- Display: 産 -->

HTML Hexadecimal:

<p>HTML hex: &#x7523;</p>  <!-- Display: 産 -->

URL Encoding:

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

Encodings

MD5:

761ab600e75d33d3de2a6e9e6a2e71ba

SHA1:

08d57eaeb7256ecc9913a4ab55e9150d57ac2ecc

Base64:

55Sj