Unicode Finder

"祆" U+7946(CJK UNIFIED IDEOGRAPH-7946)

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

Programming

C
\u7946
JavaScript
\u7946
Java
\u7946
Json
\u7946
Python
\u7946
Perl
\x{7946}
PHP
\x{7946}
Ruby
\u{7946}
Rust
\u{7946}
Go
\u7946

Web

CSS
\007946
HtmlDecimal
祆
HtmlHexadecimal
祆
Url
%E7%A5%86

Code

MD5
7d5434802d82ce604072245ebaa954cf
Sha1
94ce5c8b95cfc2025f0eff1914ec95101a55408c
Base64
56WG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7946';
console.log(char);  // Output: 祆

Java:

char c = '\u7946';
System.out.println(c);  // Output: 祆

JSON:

{"text": "\u7946"}  // Value: 祆

Python:

char = '\u7946'
print(char)  # Output: 祆

Perl:

my $char = "\x{7946}";
print $char;  # Output: 祆

PHP:

$char = "\x{7946}";
echo $char;  // Output: 祆

Ruby:

char = "\u{7946}"
puts char  # Output: 祆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007946";  /* Display: 祆 */
}

HTML Decimal:

<p>HTML decimal: &#31046;</p>  <!-- Display: 祆 -->

HTML Hexadecimal:

<p>HTML hex: &#x7946;</p>  <!-- Display: 祆 -->

URL Encoding:

// 祆 URL encoding
https://unicodefinder.com/search.php?query=%E7%A5%86

Encodings

MD5:

7d5434802d82ce604072245ebaa954cf

SHA1:

94ce5c8b95cfc2025f0eff1914ec95101a55408c

Base64:

56WG