Unicode Finder

"稷" U+7A37(CJK UNIFIED IDEOGRAPH-7A37)

U+7A37
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7A37

Programming

C
\u7A37
JavaScript
\u7A37
Java
\u7A37
Json
\u7A37
Python
\u7A37
Perl
\x{7A37}
PHP
\x{7A37}
Ruby
\u{7A37}
Rust
\u{7A37}
Go
\u7A37

Web

CSS
\007A37
HtmlDecimal
稷
HtmlHexadecimal
稷
Url
%E7%A8%B7

Code

MD5
94e85eaf20d946887fd2735727554e25
Sha1
0352ef429190e89edf7188a66034d0033ef8cd13
Base64
56i3

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A37';
console.log(char);  // Output: 稷

Java:

char c = '\u7A37';
System.out.println(c);  // Output: 稷

JSON:

{"text": "\u7A37"}  // Value: 稷

Python:

char = '\u7A37'
print(char)  # Output: 稷

Perl:

my $char = "\x{7A37}";
print $char;  # Output: 稷

PHP:

$char = "\x{7A37}";
echo $char;  // Output: 稷

Ruby:

char = "\u{7A37}"
puts char  # Output: 稷

Rust:

let c = '\u{7A37}';
println!("{}", c);  // Output: 稷

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007A37";  /* Display: 稷 */
}

HTML Decimal:

<p>HTML decimal: &#31287;</p>  <!-- Display: 稷 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A37;</p>  <!-- Display: 稷 -->

URL Encoding:

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

Encodings

MD5:

94e85eaf20d946887fd2735727554e25

SHA1:

0352ef429190e89edf7188a66034d0033ef8cd13

Base64:

56i3