Unicode Finder

"儂" U+5102(CJK UNIFIED IDEOGRAPH-5102)

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

Programming

C
\u5102
JavaScript
\u5102
Java
\u5102
Json
\u5102
Python
\u5102
Perl
\x{5102}
PHP
\x{5102}
Ruby
\u{5102}
Rust
\u{5102}
Go
\u5102

Web

CSS
\005102
HtmlDecimal
儂
HtmlHexadecimal
儂
Url
%E5%84%82

Code

MD5
4f3353649ba7e8c0c01d220b5b388d63
Sha1
e4f0455806ea1ea4816736a5f2de1ebacab50ff5
Base64
5YSC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5102';
console.log(char);  // Output: 儂

Java:

char c = '\u5102';
System.out.println(c);  // Output: 儂

JSON:

{"text": "\u5102"}  // Value: 儂

Python:

char = '\u5102'
print(char)  # Output: 儂

Perl:

my $char = "\x{5102}";
print $char;  # Output: 儂

PHP:

$char = "\x{5102}";
echo $char;  // Output: 儂

Ruby:

char = "\u{5102}"
puts char  # Output: 儂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005102";  /* Display: 儂 */
}

HTML Decimal:

<p>HTML decimal: &#20738;</p>  <!-- Display: 儂 -->

HTML Hexadecimal:

<p>HTML hex: &#x5102;</p>  <!-- Display: 儂 -->

URL Encoding:

// 儂 URL encoding
https://unicodefinder.com/search.php?query=%E5%84%82

Encodings

MD5:

4f3353649ba7e8c0c01d220b5b388d63

SHA1:

e4f0455806ea1ea4816736a5f2de1ebacab50ff5

Base64:

5YSC