Unicode Finder

"砗" U+7817(CJK UNIFIED IDEOGRAPH-7817)

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

Programming

C
\u7817
JavaScript
\u7817
Java
\u7817
Json
\u7817
Python
\u7817
Perl
\x{7817}
PHP
\x{7817}
Ruby
\u{7817}
Rust
\u{7817}
Go
\u7817

Web

CSS
\007817
HtmlDecimal
砗
HtmlHexadecimal
砗
Url
%E7%A0%97

Code

MD5
21a4843aea29bcb8cecf50d477699f05
Sha1
4efddd634cd7b8c391a1e32a909c35128944ea86
Base64
56CX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7817';
console.log(char);  // Output: 砗

Java:

char c = '\u7817';
System.out.println(c);  // Output: 砗

JSON:

{"text": "\u7817"}  // Value: 砗

Python:

char = '\u7817'
print(char)  # Output: 砗

Perl:

my $char = "\x{7817}";
print $char;  # Output: 砗

PHP:

$char = "\x{7817}";
echo $char;  // Output: 砗

Ruby:

char = "\u{7817}"
puts char  # Output: 砗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007817";  /* Display: 砗 */
}

HTML Decimal:

<p>HTML decimal: &#30743;</p>  <!-- Display: 砗 -->

HTML Hexadecimal:

<p>HTML hex: &#x7817;</p>  <!-- Display: 砗 -->

URL Encoding:

// 砗 URL encoding
https://unicodefinder.com/search.php?query=%E7%A0%97

Encodings

MD5:

21a4843aea29bcb8cecf50d477699f05

SHA1:

4efddd634cd7b8c391a1e32a909c35128944ea86

Base64:

56CX