Unicode Finder

"荸" U+8378(CJK UNIFIED IDEOGRAPH-8378)

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

Programming

C
\u8378
JavaScript
\u8378
Java
\u8378
Json
\u8378
Python
\u8378
Perl
\x{8378}
PHP
\x{8378}
Ruby
\u{8378}
Rust
\u{8378}
Go
\u8378

Web

CSS
\008378
HtmlDecimal
荸
HtmlHexadecimal
荸
Url
%E8%8D%B8

Code

MD5
9db1b48d20adf504380a54fffeb35eb8
Sha1
0e85c84bdb0333f8c3d100a1f8890c03228f3996
Base64
6I24

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8378';
console.log(char);  // Output: 荸

Java:

char c = '\u8378';
System.out.println(c);  // Output: 荸

JSON:

{"text": "\u8378"}  // Value: 荸

Python:

char = '\u8378'
print(char)  # Output: 荸

Perl:

my $char = "\x{8378}";
print $char;  # Output: 荸

PHP:

$char = "\x{8378}";
echo $char;  // Output: 荸

Ruby:

char = "\u{8378}"
puts char  # Output: 荸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008378";  /* Display: 荸 */
}

HTML Decimal:

<p>HTML decimal: &#33656;</p>  <!-- Display: 荸 -->

HTML Hexadecimal:

<p>HTML hex: &#x8378;</p>  <!-- Display: 荸 -->

URL Encoding:

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

Encodings

MD5:

9db1b48d20adf504380a54fffeb35eb8

SHA1:

0e85c84bdb0333f8c3d100a1f8890c03228f3996

Base64:

6I24