Unicode Finder

"磪" U+78EA(CJK UNIFIED IDEOGRAPH-78EA)

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

Programming

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

Web

CSS
\0078EA
HtmlDecimal
磪
HtmlHexadecimal
磪
Url
%E7%A3%AA

Code

MD5
905faf0aff9693d0efbdfdfba299959d
Sha1
7ab81f23ca41650301fca08ea2fc5f5dbb5e83eb
Base64
56Oq

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u78EA';
console.log(char);  // Output: 磪

Java:

char c = '\u78EA';
System.out.println(c);  // Output: 磪

JSON:

{"text": "\u78EA"}  // Value: 磪

Python:

char = '\u78EA'
print(char)  # Output: 磪

Perl:

my $char = "\x{78EA}";
print $char;  # Output: 磪

PHP:

$char = "\x{78EA}";
echo $char;  // Output: 磪

Ruby:

char = "\u{78EA}"
puts char  # Output: 磪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30954;</p>  <!-- Display: 磪 -->

HTML Hexadecimal:

<p>HTML hex: &#x78EA;</p>  <!-- Display: 磪 -->

URL Encoding:

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

Encodings

MD5:

905faf0aff9693d0efbdfdfba299959d

SHA1:

7ab81f23ca41650301fca08ea2fc5f5dbb5e83eb

Base64:

56Oq