Unicode Finder

"莘" U+8398(CJK UNIFIED IDEOGRAPH-8398)

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

Programming

C
\u8398
JavaScript
\u8398
Java
\u8398
Json
\u8398
Python
\u8398
Perl
\x{8398}
PHP
\x{8398}
Ruby
\u{8398}
Rust
\u{8398}
Go
\u8398

Web

CSS
\008398
HtmlDecimal
莘
HtmlHexadecimal
莘
Url
%E8%8E%98

Code

MD5
61e24f12f0f43e8c7873843c82ba280a
Sha1
a2c6a1f9e162a500ed71c3b1ae6f21610131fc0f
Base64
6I6Y

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8398';
console.log(char);  // Output: 莘

Java:

char c = '\u8398';
System.out.println(c);  // Output: 莘

JSON:

{"text": "\u8398"}  // Value: 莘

Python:

char = '\u8398'
print(char)  # Output: 莘

Perl:

my $char = "\x{8398}";
print $char;  # Output: 莘

PHP:

$char = "\x{8398}";
echo $char;  // Output: 莘

Ruby:

char = "\u{8398}"
puts char  # Output: 莘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008398";  /* Display: 莘 */
}

HTML Decimal:

<p>HTML decimal: &#33688;</p>  <!-- Display: 莘 -->

HTML Hexadecimal:

<p>HTML hex: &#x8398;</p>  <!-- Display: 莘 -->

URL Encoding:

// 莘 URL encoding
https://unicodefinder.com/search.php?query=%E8%8E%98

Encodings

MD5:

61e24f12f0f43e8c7873843c82ba280a

SHA1:

a2c6a1f9e162a500ed71c3b1ae6f21610131fc0f

Base64:

6I6Y