Unicode Finder

"砀" U+7800(CJK UNIFIED IDEOGRAPH-7800)

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

Programming

C
\u7800
JavaScript
\u7800
Java
\u7800
Json
\u7800
Python
\u7800
Perl
\x{7800}
PHP
\x{7800}
Ruby
\u{7800}
Rust
\u{7800}
Go
\u7800

Web

CSS
\007800
HtmlDecimal
砀
HtmlHexadecimal
砀
Url
%E7%A0%80

Code

MD5
db7b15004636c95ee6407786571ec3e4
Sha1
089ee590723b5171fdf6157e21dc34dfedcc5de2
Base64
56CA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7800';
console.log(char);  // Output: 砀

Java:

char c = '\u7800';
System.out.println(c);  // Output: 砀

JSON:

{"text": "\u7800"}  // Value: 砀

Python:

char = '\u7800'
print(char)  # Output: 砀

Perl:

my $char = "\x{7800}";
print $char;  # Output: 砀

PHP:

$char = "\x{7800}";
echo $char;  // Output: 砀

Ruby:

char = "\u{7800}"
puts char  # Output: 砀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007800";  /* Display: 砀 */
}

HTML Decimal:

<p>HTML decimal: &#30720;</p>  <!-- Display: 砀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7800;</p>  <!-- Display: 砀 -->

URL Encoding:

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

Encodings

MD5:

db7b15004636c95ee6407786571ec3e4

SHA1:

089ee590723b5171fdf6157e21dc34dfedcc5de2

Base64:

56CA