Unicode Finder

"荙" U+8359(CJK UNIFIED IDEOGRAPH-8359)

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

Programming

C
\u8359
JavaScript
\u8359
Java
\u8359
Json
\u8359
Python
\u8359
Perl
\x{8359}
PHP
\x{8359}
Ruby
\u{8359}
Rust
\u{8359}
Go
\u8359

Web

CSS
\008359
HtmlDecimal
荙
HtmlHexadecimal
荙
Url
%E8%8D%99

Code

MD5
f7a6c21e283e5df04f9aae9197128ca4
Sha1
a4079fca51f6f71bb86da10c3d7bbf9f16e88ec1
Base64
6I2Z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8359';
console.log(char);  // Output: 荙

Java:

char c = '\u8359';
System.out.println(c);  // Output: 荙

JSON:

{"text": "\u8359"}  // Value: 荙

Python:

char = '\u8359'
print(char)  # Output: 荙

Perl:

my $char = "\x{8359}";
print $char;  # Output: 荙

PHP:

$char = "\x{8359}";
echo $char;  // Output: 荙

Ruby:

char = "\u{8359}"
puts char  # Output: 荙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008359";  /* Display: 荙 */
}

HTML Decimal:

<p>HTML decimal: &#33625;</p>  <!-- Display: 荙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8359;</p>  <!-- Display: 荙 -->

URL Encoding:

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

Encodings

MD5:

f7a6c21e283e5df04f9aae9197128ca4

SHA1:

a4079fca51f6f71bb86da10c3d7bbf9f16e88ec1

Base64:

6I2Z