Unicode Finder

"磀" U+78C0(CJK UNIFIED IDEOGRAPH-78C0)

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

Programming

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

Web

CSS
\0078C0
HtmlDecimal
磀
HtmlHexadecimal
磀
Url
%E7%A3%80

Code

MD5
05d596f4ff40f12a841f8d0dfcec3815
Sha1
f015dd10df27264c071cfd77dcc56bd004bae905
Base64
56OA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u78C0';
console.log(char);  // Output: 磀

Java:

char c = '\u78C0';
System.out.println(c);  // Output: 磀

JSON:

{"text": "\u78C0"}  // Value: 磀

Python:

char = '\u78C0'
print(char)  # Output: 磀

Perl:

my $char = "\x{78C0}";
print $char;  # Output: 磀

PHP:

$char = "\x{78C0}";
echo $char;  // Output: 磀

Ruby:

char = "\u{78C0}"
puts char  # Output: 磀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30912;</p>  <!-- Display: 磀 -->

HTML Hexadecimal:

<p>HTML hex: &#x78C0;</p>  <!-- Display: 磀 -->

URL Encoding:

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

Encodings

MD5:

05d596f4ff40f12a841f8d0dfcec3815

SHA1:

f015dd10df27264c071cfd77dcc56bd004bae905

Base64:

56OA