Unicode Finder

"邌" U+908C(CJK UNIFIED IDEOGRAPH-908C)

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

Programming

C
\u908C
JavaScript
\u908C
Java
\u908C
Json
\u908C
Python
\u908C
Perl
\x{908C}
PHP
\x{908C}
Ruby
\u{908C}
Rust
\u{908C}
Go
\u908C

Web

CSS
\00908C
HtmlDecimal
邌
HtmlHexadecimal
邌
Url
%E9%82%8C

Code

MD5
e54c23e9ae86d381632eaf6ac1918226
Sha1
2f0dfdaa633b4a483659bee62613ae7e99a12f00
Base64
6YKM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u908C';
console.log(char);  // Output: 邌

Java:

char c = '\u908C';
System.out.println(c);  // Output: 邌

JSON:

{"text": "\u908C"}  // Value: 邌

Python:

char = '\u908C'
print(char)  # Output: 邌

Perl:

my $char = "\x{908C}";
print $char;  # Output: 邌

PHP:

$char = "\x{908C}";
echo $char;  // Output: 邌

Ruby:

char = "\u{908C}"
puts char  # Output: 邌

Rust:

let c = '\u{908C}';
println!("{}", c);  // Output: 邌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00908C";  /* Display: 邌 */
}

HTML Decimal:

<p>HTML decimal: &#37004;</p>  <!-- Display: 邌 -->

HTML Hexadecimal:

<p>HTML hex: &#x908C;</p>  <!-- Display: 邌 -->

URL Encoding:

// 邌 URL encoding
https://unicodefinder.com/search.php?query=%E9%82%8C

Encodings

MD5:

e54c23e9ae86d381632eaf6ac1918226

SHA1:

2f0dfdaa633b4a483659bee62613ae7e99a12f00

Base64:

6YKM