Unicode Finder

"磶" U+78F6(CJK UNIFIED IDEOGRAPH-78F6)

U+78F6
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-78F6

Programming

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

Web

CSS
\0078F6
HtmlDecimal
磶
HtmlHexadecimal
磶
Url
%E7%A3%B6

Code

MD5
99e910c5ec771f210d5f41d4884f7c50
Sha1
a55aabc0d3096ef5279632f6c7f1436c537ef31b
Base64
56O2

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u78F6';
console.log(char);  // Output: 磶

Java:

char c = '\u78F6';
System.out.println(c);  // Output: 磶

JSON:

{"text": "\u78F6"}  // Value: 磶

Python:

char = '\u78F6'
print(char)  # Output: 磶

Perl:

my $char = "\x{78F6}";
print $char;  # Output: 磶

PHP:

$char = "\x{78F6}";
echo $char;  // Output: 磶

Ruby:

char = "\u{78F6}"
puts char  # Output: 磶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30966;</p>  <!-- Display: 磶 -->

HTML Hexadecimal:

<p>HTML hex: &#x78F6;</p>  <!-- Display: 磶 -->

URL Encoding:

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

Encodings

MD5:

99e910c5ec771f210d5f41d4884f7c50

SHA1:

a55aabc0d3096ef5279632f6c7f1436c537ef31b

Base64:

56O2