Unicode Finder

"磦" U+78E6(CJK UNIFIED IDEOGRAPH-78E6)

U+78E6
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-78E6

Programming

C
\u78E6
JavaScript
\u78E6
Java
\u78E6
Json
\u78E6
Python
\u78E6
Perl
\x{78E6}
PHP
\x{78E6}
Ruby
\u{78E6}
Rust
\u{78E6}
Go
\u78E6

Web

CSS
\0078E6
HtmlDecimal
磦
HtmlHexadecimal
磦
Url
%E7%A3%A6

Code

MD5
48c33b1dd6f70bfae31d90278fff6c61
Sha1
0bb4369e09f9c53d76cb8b941d782b5c5eb04b28
Base64
56Om

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u78E6';
console.log(char);  // Output: 磦

Java:

char c = '\u78E6';
System.out.println(c);  // Output: 磦

JSON:

{"text": "\u78E6"}  // Value: 磦

Python:

char = '\u78E6'
print(char)  # Output: 磦

Perl:

my $char = "\x{78E6}";
print $char;  # Output: 磦

PHP:

$char = "\x{78E6}";
echo $char;  // Output: 磦

Ruby:

char = "\u{78E6}"
puts char  # Output: 磦

Rust:

let c = '\u{78E6}';
println!("{}", c);  // Output: 磦

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0078E6";  /* Display: 磦 */
}

HTML Decimal:

<p>HTML decimal: &#30950;</p>  <!-- Display: 磦 -->

HTML Hexadecimal:

<p>HTML hex: &#x78E6;</p>  <!-- Display: 磦 -->

URL Encoding:

// 磦 URL encoding
https://unicodefinder.com/search.php?query=%E7%A3%A6

Encodings

MD5:

48c33b1dd6f70bfae31d90278fff6c61

SHA1:

0bb4369e09f9c53d76cb8b941d782b5c5eb04b28

Base64:

56Om