Unicode Finder

"砠" U+7820(CJK UNIFIED IDEOGRAPH-7820)

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

Programming

C
\u7820
JavaScript
\u7820
Java
\u7820
Json
\u7820
Python
\u7820
Perl
\x{7820}
PHP
\x{7820}
Ruby
\u{7820}
Rust
\u{7820}
Go
\u7820

Web

CSS
\007820
HtmlDecimal
砠
HtmlHexadecimal
砠
Url
%E7%A0%A0

Code

MD5
61edde6ccdddfe45b4ee7962626b909a
Sha1
2fffc33d2b0ae9c16624aa1ba9d958b270dcbf78
Base64
56Cg

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7820';
console.log(char);  // Output: 砠

Java:

char c = '\u7820';
System.out.println(c);  // Output: 砠

JSON:

{"text": "\u7820"}  // Value: 砠

Python:

char = '\u7820'
print(char)  # Output: 砠

Perl:

my $char = "\x{7820}";
print $char;  # Output: 砠

PHP:

$char = "\x{7820}";
echo $char;  // Output: 砠

Ruby:

char = "\u{7820}"
puts char  # Output: 砠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007820";  /* Display: 砠 */
}

HTML Decimal:

<p>HTML decimal: &#30752;</p>  <!-- Display: 砠 -->

HTML Hexadecimal:

<p>HTML hex: &#x7820;</p>  <!-- Display: 砠 -->

URL Encoding:

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

Encodings

MD5:

61edde6ccdddfe45b4ee7962626b909a

SHA1:

2fffc33d2b0ae9c16624aa1ba9d958b270dcbf78

Base64:

56Cg