Unicode Finder

"荨" U+8368(CJK UNIFIED IDEOGRAPH-8368)

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

Programming

C
\u8368
JavaScript
\u8368
Java
\u8368
Json
\u8368
Python
\u8368
Perl
\x{8368}
PHP
\x{8368}
Ruby
\u{8368}
Rust
\u{8368}
Go
\u8368

Web

CSS
\008368
HtmlDecimal
荨
HtmlHexadecimal
荨
Url
%E8%8D%A8

Code

MD5
550aa7c41f19ab95e89b8cc885539a8b
Sha1
e00d2d7240a13a6d8f6fc53e8454016029a05fa1
Base64
6I2o

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8368';
console.log(char);  // Output: 荨

Java:

char c = '\u8368';
System.out.println(c);  // Output: 荨

JSON:

{"text": "\u8368"}  // Value: 荨

Python:

char = '\u8368'
print(char)  # Output: 荨

Perl:

my $char = "\x{8368}";
print $char;  # Output: 荨

PHP:

$char = "\x{8368}";
echo $char;  // Output: 荨

Ruby:

char = "\u{8368}"
puts char  # Output: 荨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008368";  /* Display: 荨 */
}

HTML Decimal:

<p>HTML decimal: &#33640;</p>  <!-- Display: 荨 -->

HTML Hexadecimal:

<p>HTML hex: &#x8368;</p>  <!-- Display: 荨 -->

URL Encoding:

// 荨 URL encoding
https://unicodefinder.com/search.php?query=%E8%8D%A8

Encodings

MD5:

550aa7c41f19ab95e89b8cc885539a8b

SHA1:

e00d2d7240a13a6d8f6fc53e8454016029a05fa1

Base64:

6I2o