Unicode Finder

"社" U+793E(CJK UNIFIED IDEOGRAPH-793E)

U+793E
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-793E

Programming

C
\u793E
JavaScript
\u793E
Java
\u793E
Json
\u793E
Python
\u793E
Perl
\x{793E}
PHP
\x{793E}
Ruby
\u{793E}
Rust
\u{793E}
Go
\u793E

Web

CSS
\00793E
HtmlDecimal
社
HtmlHexadecimal
社
Url
%E7%A4%BE

Code

MD5
322b2db34b4b08e802d64e971eb362f0
Sha1
1cf3b2f84e7f96d86ba0ab7e0b43337200389635
Base64
56S+

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u793E';
console.log(char);  // Output: 社

Java:

char c = '\u793E';
System.out.println(c);  // Output: 社

JSON:

{"text": "\u793E"}  // Value: 社

Python:

char = '\u793E'
print(char)  # Output: 社

Perl:

my $char = "\x{793E}";
print $char;  # Output: 社

PHP:

$char = "\x{793E}";
echo $char;  // Output: 社

Ruby:

char = "\u{793E}"
puts char  # Output: 社

Rust:

let c = '\u{793E}';
println!("{}", c);  // Output: 社

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00793E";  /* Display: 社 */
}

HTML Decimal:

<p>HTML decimal: &#31038;</p>  <!-- Display: 社 -->

HTML Hexadecimal:

<p>HTML hex: &#x793E;</p>  <!-- Display: 社 -->

URL Encoding:

// 社 URL encoding
https://unicodefinder.com/search.php?query=%E7%A4%BE

Encodings

MD5:

322b2db34b4b08e802d64e971eb362f0

SHA1:

1cf3b2f84e7f96d86ba0ab7e0b43337200389635

Base64:

56S+