Unicode Finder

"糃" U+7CC3(CJK UNIFIED IDEOGRAPH-7CC3)

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

Programming

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

Web

CSS
\007CC3
HtmlDecimal
糃
HtmlHexadecimal
糃
Url
%E7%B3%83

Code

MD5
aa47adfd7b1631c77884e6d18146d6c1
Sha1
47046cafbdb799b508480af23407c3704492a429
Base64
57OD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7CC3';
console.log(char);  // Output: 糃

Java:

char c = '\u7CC3';
System.out.println(c);  // Output: 糃

JSON:

{"text": "\u7CC3"}  // Value: 糃

Python:

char = '\u7CC3'
print(char)  # Output: 糃

Perl:

my $char = "\x{7CC3}";
print $char;  # Output: 糃

PHP:

$char = "\x{7CC3}";
echo $char;  // Output: 糃

Ruby:

char = "\u{7CC3}"
puts char  # Output: 糃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31939;</p>  <!-- Display: 糃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CC3;</p>  <!-- Display: 糃 -->

URL Encoding:

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

Encodings

MD5:

aa47adfd7b1631c77884e6d18146d6c1

SHA1:

47046cafbdb799b508480af23407c3704492a429

Base64:

57OD