Unicode Finder

"荲" U+8372(CJK UNIFIED IDEOGRAPH-8372)

U+8372
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8372

Programming

C
\u8372
JavaScript
\u8372
Java
\u8372
Json
\u8372
Python
\u8372
Perl
\x{8372}
PHP
\x{8372}
Ruby
\u{8372}
Rust
\u{8372}
Go
\u8372

Web

CSS
\008372
HtmlDecimal
荲
HtmlHexadecimal
荲
Url
%E8%8D%B2

Code

MD5
33ef1824f0dfa2d2ec96d828d9646f8e
Sha1
1e278543c87fb09addde174e3d1f6ee22076170f
Base64
6I2y

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8372';
console.log(char);  // Output: 荲

Java:

char c = '\u8372';
System.out.println(c);  // Output: 荲

JSON:

{"text": "\u8372"}  // Value: 荲

Python:

char = '\u8372'
print(char)  # Output: 荲

Perl:

my $char = "\x{8372}";
print $char;  # Output: 荲

PHP:

$char = "\x{8372}";
echo $char;  // Output: 荲

Ruby:

char = "\u{8372}"
puts char  # Output: 荲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008372";  /* Display: 荲 */
}

HTML Decimal:

<p>HTML decimal: &#33650;</p>  <!-- Display: 荲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8372;</p>  <!-- Display: 荲 -->

URL Encoding:

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

Encodings

MD5:

33ef1824f0dfa2d2ec96d828d9646f8e

SHA1:

1e278543c87fb09addde174e3d1f6ee22076170f

Base64:

6I2y