Unicode Finder

"獆" U+7346(CJK UNIFIED IDEOGRAPH-7346)

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

Programming

C
\u7346
JavaScript
\u7346
Java
\u7346
Json
\u7346
Python
\u7346
Perl
\x{7346}
PHP
\x{7346}
Ruby
\u{7346}
Rust
\u{7346}
Go
\u7346

Web

CSS
\007346
HtmlDecimal
獆
HtmlHexadecimal
獆
Url
%E7%8D%86

Code

MD5
f4f861b8e53704590abce852d3b3a1d0
Sha1
81d3efd84aefdd834256999065cd663b4a97290c
Base64
542G

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7346';
console.log(char);  // Output: 獆

Java:

char c = '\u7346';
System.out.println(c);  // Output: 獆

JSON:

{"text": "\u7346"}  // Value: 獆

Python:

char = '\u7346'
print(char)  # Output: 獆

Perl:

my $char = "\x{7346}";
print $char;  # Output: 獆

PHP:

$char = "\x{7346}";
echo $char;  // Output: 獆

Ruby:

char = "\u{7346}"
puts char  # Output: 獆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007346";  /* Display: 獆 */
}

HTML Decimal:

<p>HTML decimal: &#29510;</p>  <!-- Display: 獆 -->

HTML Hexadecimal:

<p>HTML hex: &#x7346;</p>  <!-- Display: 獆 -->

URL Encoding:

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

Encodings

MD5:

f4f861b8e53704590abce852d3b3a1d0

SHA1:

81d3efd84aefdd834256999065cd663b4a97290c

Base64:

542G