Unicode Finder

"荓" U+8353(CJK UNIFIED IDEOGRAPH-8353)

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

Programming

C
\u8353
JavaScript
\u8353
Java
\u8353
Json
\u8353
Python
\u8353
Perl
\x{8353}
PHP
\x{8353}
Ruby
\u{8353}
Rust
\u{8353}
Go
\u8353

Web

CSS
\008353
HtmlDecimal
荓
HtmlHexadecimal
荓
Url
%E8%8D%93

Code

MD5
09caaacf17e6c3784906c0b2f2d1ce9d
Sha1
06f1b529ef48cc647e2f2a2981ff3479bfdce01b
Base64
6I2T

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8353';
console.log(char);  // Output: 荓

Java:

char c = '\u8353';
System.out.println(c);  // Output: 荓

JSON:

{"text": "\u8353"}  // Value: 荓

Python:

char = '\u8353'
print(char)  # Output: 荓

Perl:

my $char = "\x{8353}";
print $char;  # Output: 荓

PHP:

$char = "\x{8353}";
echo $char;  // Output: 荓

Ruby:

char = "\u{8353}"
puts char  # Output: 荓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008353";  /* Display: 荓 */
}

HTML Decimal:

<p>HTML decimal: &#33619;</p>  <!-- Display: 荓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8353;</p>  <!-- Display: 荓 -->

URL Encoding:

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

Encodings

MD5:

09caaacf17e6c3784906c0b2f2d1ce9d

SHA1:

06f1b529ef48cc647e2f2a2981ff3479bfdce01b

Base64:

6I2T