Unicode Finder

"磉" U+78C9(CJK UNIFIED IDEOGRAPH-78C9)

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

Programming

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

Web

CSS
\0078C9
HtmlDecimal
磉
HtmlHexadecimal
磉
Url
%E7%A3%89

Code

MD5
9641993aa7186437d953125f4feb6a80
Sha1
343c2fbeadeb1e1b3ed1503a66d7a3a765f50641
Base64
56OJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u78C9';
console.log(char);  // Output: 磉

Java:

char c = '\u78C9';
System.out.println(c);  // Output: 磉

JSON:

{"text": "\u78C9"}  // Value: 磉

Python:

char = '\u78C9'
print(char)  # Output: 磉

Perl:

my $char = "\x{78C9}";
print $char;  # Output: 磉

PHP:

$char = "\x{78C9}";
echo $char;  // Output: 磉

Ruby:

char = "\u{78C9}"
puts char  # Output: 磉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30921;</p>  <!-- Display: 磉 -->

HTML Hexadecimal:

<p>HTML hex: &#x78C9;</p>  <!-- Display: 磉 -->

URL Encoding:

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

Encodings

MD5:

9641993aa7186437d953125f4feb6a80

SHA1:

343c2fbeadeb1e1b3ed1503a66d7a3a765f50641

Base64:

56OJ