Unicode Finder

"磓" U+78D3(CJK UNIFIED IDEOGRAPH-78D3)

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

Programming

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

Web

CSS
\0078D3
HtmlDecimal
磓
HtmlHexadecimal
磓
Url
%E7%A3%93

Code

MD5
73ad9d4b6667b43e545b579ce4351968
Sha1
494b893f1aa437a94f6381d53fa828f9cbf1e274
Base64
56OT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u78D3';
console.log(char);  // Output: 磓

Java:

char c = '\u78D3';
System.out.println(c);  // Output: 磓

JSON:

{"text": "\u78D3"}  // Value: 磓

Python:

char = '\u78D3'
print(char)  # Output: 磓

Perl:

my $char = "\x{78D3}";
print $char;  # Output: 磓

PHP:

$char = "\x{78D3}";
echo $char;  // Output: 磓

Ruby:

char = "\u{78D3}"
puts char  # Output: 磓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30931;</p>  <!-- Display: 磓 -->

HTML Hexadecimal:

<p>HTML hex: &#x78D3;</p>  <!-- Display: 磓 -->

URL Encoding:

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

Encodings

MD5:

73ad9d4b6667b43e545b579ce4351968

SHA1:

494b893f1aa437a94f6381d53fa828f9cbf1e274

Base64:

56OT