Unicode Finder

"礥" U+7925(CJK UNIFIED IDEOGRAPH-7925)

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

Programming

C
\u7925
JavaScript
\u7925
Java
\u7925
Json
\u7925
Python
\u7925
Perl
\x{7925}
PHP
\x{7925}
Ruby
\u{7925}
Rust
\u{7925}
Go
\u7925

Web

CSS
\007925
HtmlDecimal
礥
HtmlHexadecimal
礥
Url
%E7%A4%A5

Code

MD5
1545843bf7a0f33c864d04188d85ac89
Sha1
3a27ad7be2a7bebddd3d6fe43ccab9222b659785
Base64
56Sl

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7925';
console.log(char);  // Output: 礥

Java:

char c = '\u7925';
System.out.println(c);  // Output: 礥

JSON:

{"text": "\u7925"}  // Value: 礥

Python:

char = '\u7925'
print(char)  # Output: 礥

Perl:

my $char = "\x{7925}";
print $char;  # Output: 礥

PHP:

$char = "\x{7925}";
echo $char;  // Output: 礥

Ruby:

char = "\u{7925}"
puts char  # Output: 礥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007925";  /* Display: 礥 */
}

HTML Decimal:

<p>HTML decimal: &#31013;</p>  <!-- Display: 礥 -->

HTML Hexadecimal:

<p>HTML hex: &#x7925;</p>  <!-- Display: 礥 -->

URL Encoding:

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

Encodings

MD5:

1545843bf7a0f33c864d04188d85ac89

SHA1:

3a27ad7be2a7bebddd3d6fe43ccab9222b659785

Base64:

56Sl