Unicode Finder

"配" U+914D(CJK UNIFIED IDEOGRAPH-914D)

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

Programming

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

Web

CSS
\00914D
HtmlDecimal
配
HtmlHexadecimal
配
Url
%E9%85%8D

Code

MD5
591882d88b997e77909ff5a1cadafaad
Sha1
bf088e299c52d9661d4bd22addc74a883ee1f56d
Base64
6YWN

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u914D';
console.log(char);  // Output: 配

Java:

char c = '\u914D';
System.out.println(c);  // Output: 配

JSON:

{"text": "\u914D"}  // Value: 配

Python:

char = '\u914D'
print(char)  # Output: 配

Perl:

my $char = "\x{914D}";
print $char;  # Output: 配

PHP:

$char = "\x{914D}";
echo $char;  // Output: 配

Ruby:

char = "\u{914D}"
puts char  # Output: 配

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37197;</p>  <!-- Display: 配 -->

HTML Hexadecimal:

<p>HTML hex: &#x914D;</p>  <!-- Display: 配 -->

URL Encoding:

// 配 URL encoding
https://unicodefinder.com/search.php?query=%E9%85%8D

Encodings

MD5:

591882d88b997e77909ff5a1cadafaad

SHA1:

bf088e299c52d9661d4bd22addc74a883ee1f56d

Base64:

6YWN