Unicode Finder

"繱" U+7E71(CJK UNIFIED IDEOGRAPH-7E71)

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

Programming

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

Web

CSS
\007E71
HtmlDecimal
繱
HtmlHexadecimal
繱
Url
%E7%B9%B1

Code

MD5
6f4ad778b390779e8b44e3eee07654b2
Sha1
8989c89c1604af8a99eea2038841d8a019438fb8
Base64
57mx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7E71';
console.log(char);  // Output: 繱

Java:

char c = '\u7E71';
System.out.println(c);  // Output: 繱

JSON:

{"text": "\u7E71"}  // Value: 繱

Python:

char = '\u7E71'
print(char)  # Output: 繱

Perl:

my $char = "\x{7E71}";
print $char;  # Output: 繱

PHP:

$char = "\x{7E71}";
echo $char;  // Output: 繱

Ruby:

char = "\u{7E71}"
puts char  # Output: 繱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32369;</p>  <!-- Display: 繱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E71;</p>  <!-- Display: 繱 -->

URL Encoding:

// 繱 URL encoding
https://unicodefinder.com/search.php?query=%E7%B9%B1

Encodings

MD5:

6f4ad778b390779e8b44e3eee07654b2

SHA1:

8989c89c1604af8a99eea2038841d8a019438fb8

Base64:

57mx