Unicode Finder

"儌" U+510C(CJK UNIFIED IDEOGRAPH-510C)

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

Programming

C
\u510C
JavaScript
\u510C
Java
\u510C
Json
\u510C
Python
\u510C
Perl
\x{510C}
PHP
\x{510C}
Ruby
\u{510C}
Rust
\u{510C}
Go
\u510C

Web

CSS
\00510C
HtmlDecimal
儌
HtmlHexadecimal
儌
Url
%E5%84%8C

Code

MD5
a52d657f76fcd9e53737e30f520d34a8
Sha1
8ea928b8ad4c128c7fc24f3cef2facf714216a28
Base64
5YSM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u510C';
console.log(char);  // Output: 儌

Java:

char c = '\u510C';
System.out.println(c);  // Output: 儌

JSON:

{"text": "\u510C"}  // Value: 儌

Python:

char = '\u510C'
print(char)  # Output: 儌

Perl:

my $char = "\x{510C}";
print $char;  # Output: 儌

PHP:

$char = "\x{510C}";
echo $char;  // Output: 儌

Ruby:

char = "\u{510C}"
puts char  # Output: 儌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20748;</p>  <!-- Display: 儌 -->

HTML Hexadecimal:

<p>HTML hex: &#x510C;</p>  <!-- Display: 儌 -->

URL Encoding:

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

Encodings

MD5:

a52d657f76fcd9e53737e30f520d34a8

SHA1:

8ea928b8ad4c128c7fc24f3cef2facf714216a28

Base64:

5YSM