Unicode Finder

"儋" U+510B(CJK UNIFIED IDEOGRAPH-510B)

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

Programming

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

Web

CSS
\00510B
HtmlDecimal
儋
HtmlHexadecimal
儋
Url
%E5%84%8B

Code

MD5
af066ec53558deff4798b5bdb0bb8462
Sha1
cadd268b6a9187b48d951a41117d28ffbdfe7198
Base64
5YSL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u510B';
console.log(char);  // Output: 儋

Java:

char c = '\u510B';
System.out.println(c);  // Output: 儋

JSON:

{"text": "\u510B"}  // Value: 儋

Python:

char = '\u510B'
print(char)  # Output: 儋

Perl:

my $char = "\x{510B}";
print $char;  # Output: 儋

PHP:

$char = "\x{510B}";
echo $char;  // Output: 儋

Ruby:

char = "\u{510B}"
puts char  # Output: 儋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20747;</p>  <!-- Display: 儋 -->

HTML Hexadecimal:

<p>HTML hex: &#x510B;</p>  <!-- Display: 儋 -->

URL Encoding:

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

Encodings

MD5:

af066ec53558deff4798b5bdb0bb8462

SHA1:

cadd268b6a9187b48d951a41117d28ffbdfe7198

Base64:

5YSL