Unicode Finder

"绁" U+7EC1(CJK UNIFIED IDEOGRAPH-7EC1)

U+7EC1
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7EC1

Programming

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

Web

CSS
\007EC1
HtmlDecimal
绁
HtmlHexadecimal
绁
Url
%E7%BB%81

Code

MD5
c4965e7d22b08f1e5b2ee1c3e3323c7e
Sha1
f71f9338b215a06ef2de9ffed157c964cd8a5d9c
Base64
57uB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7EC1';
console.log(char);  // Output: 绁

Java:

char c = '\u7EC1';
System.out.println(c);  // Output: 绁

JSON:

{"text": "\u7EC1"}  // Value: 绁

Python:

char = '\u7EC1'
print(char)  # Output: 绁

Perl:

my $char = "\x{7EC1}";
print $char;  # Output: 绁

PHP:

$char = "\x{7EC1}";
echo $char;  // Output: 绁

Ruby:

char = "\u{7EC1}"
puts char  # Output: 绁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32449;</p>  <!-- Display: 绁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EC1;</p>  <!-- Display: 绁 -->

URL Encoding:

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

Encodings

MD5:

c4965e7d22b08f1e5b2ee1c3e3323c7e

SHA1:

f71f9338b215a06ef2de9ffed157c964cd8a5d9c

Base64:

57uB