Unicode Finder

"獃" U+7343(CJK UNIFIED IDEOGRAPH-7343)

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

Programming

C
\u7343
JavaScript
\u7343
Java
\u7343
Json
\u7343
Python
\u7343
Perl
\x{7343}
PHP
\x{7343}
Ruby
\u{7343}
Rust
\u{7343}
Go
\u7343

Web

CSS
\007343
HtmlDecimal
獃
HtmlHexadecimal
獃
Url
%E7%8D%83

Code

MD5
801c7fc0254d3674c1e2073ea5788342
Sha1
cbcfd169c435e186eb671848da65f931093f54e9
Base64
542D

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7343';
console.log(char);  // Output: 獃

Java:

char c = '\u7343';
System.out.println(c);  // Output: 獃

JSON:

{"text": "\u7343"}  // Value: 獃

Python:

char = '\u7343'
print(char)  # Output: 獃

Perl:

my $char = "\x{7343}";
print $char;  # Output: 獃

PHP:

$char = "\x{7343}";
echo $char;  // Output: 獃

Ruby:

char = "\u{7343}"
puts char  # Output: 獃

Rust:

let c = '\u{7343}';
println!("{}", c);  // Output: 獃

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007343";  /* Display: 獃 */
}

HTML Decimal:

<p>HTML decimal: &#29507;</p>  <!-- Display: 獃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7343;</p>  <!-- Display: 獃 -->

URL Encoding:

// 獃 URL encoding
https://unicodefinder.com/search.php?query=%E7%8D%83

Encodings

MD5:

801c7fc0254d3674c1e2073ea5788342

SHA1:

cbcfd169c435e186eb671848da65f931093f54e9

Base64:

542D