Unicode Finder

"服" U+670D(CJK UNIFIED IDEOGRAPH-670D)

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

Programming

C
\u670D
JavaScript
\u670D
Java
\u670D
Json
\u670D
Python
\u670D
Perl
\x{670D}
PHP
\x{670D}
Ruby
\u{670D}
Rust
\u{670D}
Go
\u670D

Web

CSS
\00670D
HtmlDecimal
服
HtmlHexadecimal
服
Url
%E6%9C%8D

Code

MD5
7a4ec5e09d766262b00341f2069784e3
Sha1
b5140a9fc3b0812400a8a02cc44984f14cafb675
Base64
5pyN

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u670D';
console.log(char);  // Output: 服

Java:

char c = '\u670D';
System.out.println(c);  // Output: 服

JSON:

{"text": "\u670D"}  // Value: 服

Python:

char = '\u670D'
print(char)  # Output: 服

Perl:

my $char = "\x{670D}";
print $char;  # Output: 服

PHP:

$char = "\x{670D}";
echo $char;  // Output: 服

Ruby:

char = "\u{670D}"
puts char  # Output: 服

Rust:

let c = '\u{670D}';
println!("{}", c);  // Output: 服

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00670D";  /* Display: 服 */
}

HTML Decimal:

<p>HTML decimal: &#26381;</p>  <!-- Display: 服 -->

HTML Hexadecimal:

<p>HTML hex: &#x670D;</p>  <!-- Display: 服 -->

URL Encoding:

// 服 URL encoding
https://unicodefinder.com/search.php?query=%E6%9C%8D

Encodings

MD5:

7a4ec5e09d766262b00341f2069784e3

SHA1:

b5140a9fc3b0812400a8a02cc44984f14cafb675

Base64:

5pyN