Unicode Finder

"磆" U+78C6(CJK UNIFIED IDEOGRAPH-78C6)

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

Programming

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

Web

CSS
\0078C6
HtmlDecimal
磆
HtmlHexadecimal
磆
Url
%E7%A3%86

Code

MD5
21778d698c19a827bc4ca679cfb27b64
Sha1
fe4785cc53b68fc0f27c3a019b4dfc77d66ee26a
Base64
56OG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u78C6';
console.log(char);  // Output: 磆

Java:

char c = '\u78C6';
System.out.println(c);  // Output: 磆

JSON:

{"text": "\u78C6"}  // Value: 磆

Python:

char = '\u78C6'
print(char)  # Output: 磆

Perl:

my $char = "\x{78C6}";
print $char;  # Output: 磆

PHP:

$char = "\x{78C6}";
echo $char;  // Output: 磆

Ruby:

char = "\u{78C6}"
puts char  # Output: 磆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30918;</p>  <!-- Display: 磆 -->

HTML Hexadecimal:

<p>HTML hex: &#x78C6;</p>  <!-- Display: 磆 -->

URL Encoding:

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

Encodings

MD5:

21778d698c19a827bc4ca679cfb27b64

SHA1:

fe4785cc53b68fc0f27c3a019b4dfc77d66ee26a

Base64:

56OG