Unicode Finder

"獇" U+7347(CJK UNIFIED IDEOGRAPH-7347)

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

Programming

C
\u7347
JavaScript
\u7347
Java
\u7347
Json
\u7347
Python
\u7347
Perl
\x{7347}
PHP
\x{7347}
Ruby
\u{7347}
Rust
\u{7347}
Go
\u7347

Web

CSS
\007347
HtmlDecimal
獇
HtmlHexadecimal
獇
Url
%E7%8D%87

Code

MD5
9344f395c2541f23c9c1e0f9507ced4d
Sha1
da8cb54688c7b09ac780f6fc750be51dcfc1eae1
Base64
542H

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7347';
console.log(char);  // Output: 獇

Java:

char c = '\u7347';
System.out.println(c);  // Output: 獇

JSON:

{"text": "\u7347"}  // Value: 獇

Python:

char = '\u7347'
print(char)  # Output: 獇

Perl:

my $char = "\x{7347}";
print $char;  # Output: 獇

PHP:

$char = "\x{7347}";
echo $char;  // Output: 獇

Ruby:

char = "\u{7347}"
puts char  # Output: 獇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007347";  /* Display: 獇 */
}

HTML Decimal:

<p>HTML decimal: &#29511;</p>  <!-- Display: 獇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7347;</p>  <!-- Display: 獇 -->

URL Encoding:

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

Encodings

MD5:

9344f395c2541f23c9c1e0f9507ced4d

SHA1:

da8cb54688c7b09ac780f6fc750be51dcfc1eae1

Base64:

542H