Unicode Finder

"砅" U+7805(CJK UNIFIED IDEOGRAPH-7805)

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

Programming

C
\u7805
JavaScript
\u7805
Java
\u7805
Json
\u7805
Python
\u7805
Perl
\x{7805}
PHP
\x{7805}
Ruby
\u{7805}
Rust
\u{7805}
Go
\u7805

Web

CSS
\007805
HtmlDecimal
砅
HtmlHexadecimal
砅
Url
%E7%A0%85

Code

MD5
1e081a7faf47589b5c5d7fa910490588
Sha1
4caf4fedcd6302aece42e517223efbeac57a90fb
Base64
56CF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7805';
console.log(char);  // Output: 砅

Java:

char c = '\u7805';
System.out.println(c);  // Output: 砅

JSON:

{"text": "\u7805"}  // Value: 砅

Python:

char = '\u7805'
print(char)  # Output: 砅

Perl:

my $char = "\x{7805}";
print $char;  # Output: 砅

PHP:

$char = "\x{7805}";
echo $char;  // Output: 砅

Ruby:

char = "\u{7805}"
puts char  # Output: 砅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007805";  /* Display: 砅 */
}

HTML Decimal:

<p>HTML decimal: &#30725;</p>  <!-- Display: 砅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7805;</p>  <!-- Display: 砅 -->

URL Encoding:

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

Encodings

MD5:

1e081a7faf47589b5c5d7fa910490588

SHA1:

4caf4fedcd6302aece42e517223efbeac57a90fb

Base64:

56CF