Unicode Finder

"荕" U+8355(CJK UNIFIED IDEOGRAPH-8355)

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

Programming

C
\u8355
JavaScript
\u8355
Java
\u8355
Json
\u8355
Python
\u8355
Perl
\x{8355}
PHP
\x{8355}
Ruby
\u{8355}
Rust
\u{8355}
Go
\u8355

Web

CSS
\008355
HtmlDecimal
荕
HtmlHexadecimal
荕
Url
%E8%8D%95

Code

MD5
c1bb3e74c7340759470aa21d9515fe9b
Sha1
0b93f28be1401b823f48f79511edb0a5a6581179
Base64
6I2V

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8355';
console.log(char);  // Output: 荕

Java:

char c = '\u8355';
System.out.println(c);  // Output: 荕

JSON:

{"text": "\u8355"}  // Value: 荕

Python:

char = '\u8355'
print(char)  # Output: 荕

Perl:

my $char = "\x{8355}";
print $char;  # Output: 荕

PHP:

$char = "\x{8355}";
echo $char;  // Output: 荕

Ruby:

char = "\u{8355}"
puts char  # Output: 荕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008355";  /* Display: 荕 */
}

HTML Decimal:

<p>HTML decimal: &#33621;</p>  <!-- Display: 荕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8355;</p>  <!-- Display: 荕 -->

URL Encoding:

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

Encodings

MD5:

c1bb3e74c7340759470aa21d9515fe9b

SHA1:

0b93f28be1401b823f48f79511edb0a5a6581179

Base64:

6I2V