Unicode Finder

"礄" U+7904(CJK UNIFIED IDEOGRAPH-7904)

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

Programming

C
\u7904
JavaScript
\u7904
Java
\u7904
Json
\u7904
Python
\u7904
Perl
\x{7904}
PHP
\x{7904}
Ruby
\u{7904}
Rust
\u{7904}
Go
\u7904

Web

CSS
\007904
HtmlDecimal
礄
HtmlHexadecimal
礄
Url
%E7%A4%84

Code

MD5
da2c8e86fbe5d9bf86ce71a01990baa1
Sha1
55dc98824d2e91379ef4af98226fa39ad0989a06
Base64
56SE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7904';
console.log(char);  // Output: 礄

Java:

char c = '\u7904';
System.out.println(c);  // Output: 礄

JSON:

{"text": "\u7904"}  // Value: 礄

Python:

char = '\u7904'
print(char)  # Output: 礄

Perl:

my $char = "\x{7904}";
print $char;  # Output: 礄

PHP:

$char = "\x{7904}";
echo $char;  // Output: 礄

Ruby:

char = "\u{7904}"
puts char  # Output: 礄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007904";  /* Display: 礄 */
}

HTML Decimal:

<p>HTML decimal: &#30980;</p>  <!-- Display: 礄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7904;</p>  <!-- Display: 礄 -->

URL Encoding:

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

Encodings

MD5:

da2c8e86fbe5d9bf86ce71a01990baa1

SHA1:

55dc98824d2e91379ef4af98226fa39ad0989a06

Base64:

56SE