Unicode Finder

"搋" U+640B(CJK UNIFIED IDEOGRAPH-640B)

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

Programming

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

Web

CSS
\00640B
HtmlDecimal
搋
HtmlHexadecimal
搋
Url
%E6%90%8B

Code

MD5
d8ac208f918f54cd566e08540b68c4af
Sha1
b721a0a6c19c22ae16e8974c6d17785a87eb1219
Base64
5pCL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u640B';
console.log(char);  // Output: 搋

Java:

char c = '\u640B';
System.out.println(c);  // Output: 搋

JSON:

{"text": "\u640B"}  // Value: 搋

Python:

char = '\u640B'
print(char)  # Output: 搋

Perl:

my $char = "\x{640B}";
print $char;  # Output: 搋

PHP:

$char = "\x{640B}";
echo $char;  // Output: 搋

Ruby:

char = "\u{640B}"
puts char  # Output: 搋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25611;</p>  <!-- Display: 搋 -->

HTML Hexadecimal:

<p>HTML hex: &#x640B;</p>  <!-- Display: 搋 -->

URL Encoding:

// 搋 URL encoding
https://unicodefinder.com/search.php?query=%E6%90%8B

Encodings

MD5:

d8ac208f918f54cd566e08540b68c4af

SHA1:

b721a0a6c19c22ae16e8974c6d17785a87eb1219

Base64:

5pCL