Unicode Finder

"傌" U+508C(CJK UNIFIED IDEOGRAPH-508C)

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

Programming

C
\u508C
JavaScript
\u508C
Java
\u508C
Json
\u508C
Python
\u508C
Perl
\x{508C}
PHP
\x{508C}
Ruby
\u{508C}
Rust
\u{508C}
Go
\u508C

Web

CSS
\00508C
HtmlDecimal
傌
HtmlHexadecimal
傌
Url
%E5%82%8C

Code

MD5
dd7a409b852eb9d422825f11556e5076
Sha1
bc230b64ff592f2c15b7d176af45d56884dc6c9c
Base64
5YKM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u508C';
console.log(char);  // Output: 傌

Java:

char c = '\u508C';
System.out.println(c);  // Output: 傌

JSON:

{"text": "\u508C"}  // Value: 傌

Python:

char = '\u508C'
print(char)  # Output: 傌

Perl:

my $char = "\x{508C}";
print $char;  # Output: 傌

PHP:

$char = "\x{508C}";
echo $char;  // Output: 傌

Ruby:

char = "\u{508C}"
puts char  # Output: 傌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20620;</p>  <!-- Display: 傌 -->

HTML Hexadecimal:

<p>HTML hex: &#x508C;</p>  <!-- Display: 傌 -->

URL Encoding:

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

Encodings

MD5:

dd7a409b852eb9d422825f11556e5076

SHA1:

bc230b64ff592f2c15b7d176af45d56884dc6c9c

Base64:

5YKM