Unicode Finder

"礘" U+7918(CJK UNIFIED IDEOGRAPH-7918)

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

Programming

C
\u7918
JavaScript
\u7918
Java
\u7918
Json
\u7918
Python
\u7918
Perl
\x{7918}
PHP
\x{7918}
Ruby
\u{7918}
Rust
\u{7918}
Go
\u7918

Web

CSS
\007918
HtmlDecimal
礘
HtmlHexadecimal
礘
Url
%E7%A4%98

Code

MD5
974e8d8c621f0e5a5c75fd7a24b99c17
Sha1
01fb6b133f936ff5d5ee5197c183c0e0960a2b6e
Base64
56SY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7918';
console.log(char);  // Output: 礘

Java:

char c = '\u7918';
System.out.println(c);  // Output: 礘

JSON:

{"text": "\u7918"}  // Value: 礘

Python:

char = '\u7918'
print(char)  # Output: 礘

Perl:

my $char = "\x{7918}";
print $char;  # Output: 礘

PHP:

$char = "\x{7918}";
echo $char;  // Output: 礘

Ruby:

char = "\u{7918}"
puts char  # Output: 礘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007918";  /* Display: 礘 */
}

HTML Decimal:

<p>HTML decimal: &#31000;</p>  <!-- Display: 礘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7918;</p>  <!-- Display: 礘 -->

URL Encoding:

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

Encodings

MD5:

974e8d8c621f0e5a5c75fd7a24b99c17

SHA1:

01fb6b133f936ff5d5ee5197c183c0e0960a2b6e

Base64:

56SY