Unicode Finder

"绉" U+7EC9(CJK UNIFIED IDEOGRAPH-7EC9)

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

Programming

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

Web

CSS
\007EC9
HtmlDecimal
绉
HtmlHexadecimal
绉
Url
%E7%BB%89

Code

MD5
13480f91871926cb5e91cd75267878b3
Sha1
ced64cfa4555bb7ab9e1209850e938fa0d722691
Base64
57uJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7EC9';
console.log(char);  // Output: 绉

Java:

char c = '\u7EC9';
System.out.println(c);  // Output: 绉

JSON:

{"text": "\u7EC9"}  // Value: 绉

Python:

char = '\u7EC9'
print(char)  # Output: 绉

Perl:

my $char = "\x{7EC9}";
print $char;  # Output: 绉

PHP:

$char = "\x{7EC9}";
echo $char;  // Output: 绉

Ruby:

char = "\u{7EC9}"
puts char  # Output: 绉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32457;</p>  <!-- Display: 绉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EC9;</p>  <!-- Display: 绉 -->

URL Encoding:

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

Encodings

MD5:

13480f91871926cb5e91cd75267878b3

SHA1:

ced64cfa4555bb7ab9e1209850e938fa0d722691

Base64:

57uJ