Unicode Finder

"糁" U+7CC1(CJK UNIFIED IDEOGRAPH-7CC1)

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

Programming

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

Web

CSS
\007CC1
HtmlDecimal
糁
HtmlHexadecimal
糁
Url
%E7%B3%81

Code

MD5
268441ab7056b198030e71896647d307
Sha1
ab102a017d8ad0f954f48da4b8da3cad51488dc3
Base64
57OB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7CC1';
console.log(char);  // Output: 糁

Java:

char c = '\u7CC1';
System.out.println(c);  // Output: 糁

JSON:

{"text": "\u7CC1"}  // Value: 糁

Python:

char = '\u7CC1'
print(char)  # Output: 糁

Perl:

my $char = "\x{7CC1}";
print $char;  # Output: 糁

PHP:

$char = "\x{7CC1}";
echo $char;  // Output: 糁

Ruby:

char = "\u{7CC1}"
puts char  # Output: 糁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31937;</p>  <!-- Display: 糁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CC1;</p>  <!-- Display: 糁 -->

URL Encoding:

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

Encodings

MD5:

268441ab7056b198030e71896647d307

SHA1:

ab102a017d8ad0f954f48da4b8da3cad51488dc3

Base64:

57OB