Unicode Finder

"砌" U+780C(CJK UNIFIED IDEOGRAPH-780C)

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

Programming

C
\u780C
JavaScript
\u780C
Java
\u780C
Json
\u780C
Python
\u780C
Perl
\x{780C}
PHP
\x{780C}
Ruby
\u{780C}
Rust
\u{780C}
Go
\u780C

Web

CSS
\00780C
HtmlDecimal
砌
HtmlHexadecimal
砌
Url
%E7%A0%8C

Code

MD5
634308fdbc6bb883e114009509687a1c
Sha1
6bdad31f834126c3a92e00a94637880804f883bc
Base64
56CM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u780C';
console.log(char);  // Output: 砌

Java:

char c = '\u780C';
System.out.println(c);  // Output: 砌

JSON:

{"text": "\u780C"}  // Value: 砌

Python:

char = '\u780C'
print(char)  # Output: 砌

Perl:

my $char = "\x{780C}";
print $char;  # Output: 砌

PHP:

$char = "\x{780C}";
echo $char;  // Output: 砌

Ruby:

char = "\u{780C}"
puts char  # Output: 砌

Rust:

let c = '\u{780C}';
println!("{}", c);  // Output: 砌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00780C";  /* Display: 砌 */
}

HTML Decimal:

<p>HTML decimal: &#30732;</p>  <!-- Display: 砌 -->

HTML Hexadecimal:

<p>HTML hex: &#x780C;</p>  <!-- Display: 砌 -->

URL Encoding:

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

Encodings

MD5:

634308fdbc6bb883e114009509687a1c

SHA1:

6bdad31f834126c3a92e00a94637880804f883bc

Base64:

56CM