Unicode Finder

"磗" U+78D7(CJK UNIFIED IDEOGRAPH-78D7)

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

Programming

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

Web

CSS
\0078D7
HtmlDecimal
磗
HtmlHexadecimal
磗
Url
%E7%A3%97

Code

MD5
a33605c483e646d5951e4053aff24ee5
Sha1
2abca44f5eb3139ba6c59321004920115aab4ab0
Base64
56OX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u78D7';
console.log(char);  // Output: 磗

Java:

char c = '\u78D7';
System.out.println(c);  // Output: 磗

JSON:

{"text": "\u78D7"}  // Value: 磗

Python:

char = '\u78D7'
print(char)  # Output: 磗

Perl:

my $char = "\x{78D7}";
print $char;  # Output: 磗

PHP:

$char = "\x{78D7}";
echo $char;  // Output: 磗

Ruby:

char = "\u{78D7}"
puts char  # Output: 磗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30935;</p>  <!-- Display: 磗 -->

HTML Hexadecimal:

<p>HTML hex: &#x78D7;</p>  <!-- Display: 磗 -->

URL Encoding:

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

Encodings

MD5:

a33605c483e646d5951e4053aff24ee5

SHA1:

2abca44f5eb3139ba6c59321004920115aab4ab0

Base64:

56OX