Unicode Finder

"糅" U+7CC5(CJK UNIFIED IDEOGRAPH-7CC5)

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

Programming

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

Web

CSS
\007CC5
HtmlDecimal
糅
HtmlHexadecimal
糅
Url
%E7%B3%85

Code

MD5
2ca665dc03e392eb40601bc5155cb57b
Sha1
520dd027f86eb4af26cc3d64e0702a900a195f71
Base64
57OF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7CC5';
console.log(char);  // Output: 糅

Java:

char c = '\u7CC5';
System.out.println(c);  // Output: 糅

JSON:

{"text": "\u7CC5"}  // Value: 糅

Python:

char = '\u7CC5'
print(char)  # Output: 糅

Perl:

my $char = "\x{7CC5}";
print $char;  # Output: 糅

PHP:

$char = "\x{7CC5}";
echo $char;  // Output: 糅

Ruby:

char = "\u{7CC5}"
puts char  # Output: 糅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31941;</p>  <!-- Display: 糅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CC5;</p>  <!-- Display: 糅 -->

URL Encoding:

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

Encodings

MD5:

2ca665dc03e392eb40601bc5155cb57b

SHA1:

520dd027f86eb4af26cc3d64e0702a900a195f71

Base64:

57OF