Unicode Finder

"细" U+7EC6(CJK UNIFIED IDEOGRAPH-7EC6)

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

Programming

C
\u7EC6
JavaScript
\u7EC6
Java
\u7EC6
Json
\u7EC6
Python
\u7EC6
Perl
\x{7EC6}
PHP
\x{7EC6}
Ruby
\u{7EC6}
Rust
\u{7EC6}
Go
\u7EC6

Web

CSS
\007EC6
HtmlDecimal
细
HtmlHexadecimal
细
Url
%E7%BB%86

Code

MD5
b3b2682579133673d3fe08c156d565dc
Sha1
6a002d62cc7e755e42e5e5cfa4fe80adc2791869
Base64
57uG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7EC6';
console.log(char);  // Output: 细

Java:

char c = '\u7EC6';
System.out.println(c);  // Output: 细

JSON:

{"text": "\u7EC6"}  // Value: 细

Python:

char = '\u7EC6'
print(char)  # Output: 细

Perl:

my $char = "\x{7EC6}";
print $char;  # Output: 细

PHP:

$char = "\x{7EC6}";
echo $char;  // Output: 细

Ruby:

char = "\u{7EC6}"
puts char  # Output: 细

Rust:

let c = '\u{7EC6}';
println!("{}", c);  // Output: 细

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007EC6";  /* Display: 细 */
}

HTML Decimal:

<p>HTML decimal: &#32454;</p>  <!-- Display: 细 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EC6;</p>  <!-- Display: 细 -->

URL Encoding:

// 细 URL encoding
https://unicodefinder.com/search.php?query=%E7%BB%86

Encodings

MD5:

b3b2682579133673d3fe08c156d565dc

SHA1:

6a002d62cc7e755e42e5e5cfa4fe80adc2791869

Base64:

57uG