Unicode Finder

"礇" U+7907(CJK UNIFIED IDEOGRAPH-7907)

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

Programming

C
\u7907
JavaScript
\u7907
Java
\u7907
Json
\u7907
Python
\u7907
Perl
\x{7907}
PHP
\x{7907}
Ruby
\u{7907}
Rust
\u{7907}
Go
\u7907

Web

CSS
\007907
HtmlDecimal
礇
HtmlHexadecimal
礇
Url
%E7%A4%87

Code

MD5
bdd342778d197975de445c24dfd2a428
Sha1
438725c6d1ff112eb6e89fe864576e6d5fa815aa
Base64
56SH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7907';
console.log(char);  // Output: 礇

Java:

char c = '\u7907';
System.out.println(c);  // Output: 礇

JSON:

{"text": "\u7907"}  // Value: 礇

Python:

char = '\u7907'
print(char)  # Output: 礇

Perl:

my $char = "\x{7907}";
print $char;  # Output: 礇

PHP:

$char = "\x{7907}";
echo $char;  // Output: 礇

Ruby:

char = "\u{7907}"
puts char  # Output: 礇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007907";  /* Display: 礇 */
}

HTML Decimal:

<p>HTML decimal: &#30983;</p>  <!-- Display: 礇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7907;</p>  <!-- Display: 礇 -->

URL Encoding:

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

Encodings

MD5:

bdd342778d197975de445c24dfd2a428

SHA1:

438725c6d1ff112eb6e89fe864576e6d5fa815aa

Base64:

56SH