Unicode Finder

"礨" U+7928(CJK UNIFIED IDEOGRAPH-7928)

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

Programming

C
\u7928
JavaScript
\u7928
Java
\u7928
Json
\u7928
Python
\u7928
Perl
\x{7928}
PHP
\x{7928}
Ruby
\u{7928}
Rust
\u{7928}
Go
\u7928

Web

CSS
\007928
HtmlDecimal
礨
HtmlHexadecimal
礨
Url
%E7%A4%A8

Code

MD5
508b99b2d69e96f342dacbc93800dc25
Sha1
95f79eef304f8a5d11fc275a90db91266684a170
Base64
56So

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7928';
console.log(char);  // Output: 礨

Java:

char c = '\u7928';
System.out.println(c);  // Output: 礨

JSON:

{"text": "\u7928"}  // Value: 礨

Python:

char = '\u7928'
print(char)  # Output: 礨

Perl:

my $char = "\x{7928}";
print $char;  # Output: 礨

PHP:

$char = "\x{7928}";
echo $char;  // Output: 礨

Ruby:

char = "\u{7928}"
puts char  # Output: 礨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007928";  /* Display: 礨 */
}

HTML Decimal:

<p>HTML decimal: &#31016;</p>  <!-- Display: 礨 -->

HTML Hexadecimal:

<p>HTML hex: &#x7928;</p>  <!-- Display: 礨 -->

URL Encoding:

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

Encodings

MD5:

508b99b2d69e96f342dacbc93800dc25

SHA1:

95f79eef304f8a5d11fc275a90db91266684a170

Base64:

56So