Unicode Finder

"田" U+7530(CJK UNIFIED IDEOGRAPH-7530)

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

Programming

C
\u7530
JavaScript
\u7530
Java
\u7530
Json
\u7530
Python
\u7530
Perl
\x{7530}
PHP
\x{7530}
Ruby
\u{7530}
Rust
\u{7530}
Go
\u7530

Web

CSS
\007530
HtmlDecimal
田
HtmlHexadecimal
田
Url
%E7%94%B0

Code

MD5
3db5087bec1fa5638957f6b21daaf797
Sha1
2380e6711d81ecc377004eb293e1006665a27c57
Base64
55Sw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7530';
console.log(char);  // Output: 田

Java:

char c = '\u7530';
System.out.println(c);  // Output: 田

JSON:

{"text": "\u7530"}  // Value: 田

Python:

char = '\u7530'
print(char)  # Output: 田

Perl:

my $char = "\x{7530}";
print $char;  # Output: 田

PHP:

$char = "\x{7530}";
echo $char;  // Output: 田

Ruby:

char = "\u{7530}"
puts char  # Output: 田

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007530";  /* Display: 田 */
}

HTML Decimal:

<p>HTML decimal: &#30000;</p>  <!-- Display: 田 -->

HTML Hexadecimal:

<p>HTML hex: &#x7530;</p>  <!-- Display: 田 -->

URL Encoding:

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

Encodings

MD5:

3db5087bec1fa5638957f6b21daaf797

SHA1:

2380e6711d81ecc377004eb293e1006665a27c57

Base64:

55Sw