Unicode Finder

"冎" U+518E(CJK UNIFIED IDEOGRAPH-518E)

U+518E
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-518E

Programming

C
\u518E
JavaScript
\u518E
Java
\u518E
Json
\u518E
Python
\u518E
Perl
\x{518E}
PHP
\x{518E}
Ruby
\u{518E}
Rust
\u{518E}
Go
\u518E

Web

CSS
\00518E
HtmlDecimal
冎
HtmlHexadecimal
冎
Url
%E5%86%8E

Code

MD5
c930c6c015b64b957f1c46daada5c603
Sha1
7059759e0b8fdb7b7d34d0152d5ea7115b824233
Base64
5YaO

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u518E';
console.log(char);  // Output: 冎

Java:

char c = '\u518E';
System.out.println(c);  // Output: 冎

JSON:

{"text": "\u518E"}  // Value: 冎

Python:

char = '\u518E'
print(char)  # Output: 冎

Perl:

my $char = "\x{518E}";
print $char;  # Output: 冎

PHP:

$char = "\x{518E}";
echo $char;  // Output: 冎

Ruby:

char = "\u{518E}"
puts char  # Output: 冎

Rust:

let c = '\u{518E}';
println!("{}", c);  // Output: 冎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00518E";  /* Display: 冎 */
}

HTML Decimal:

<p>HTML decimal: &#20878;</p>  <!-- Display: 冎 -->

HTML Hexadecimal:

<p>HTML hex: &#x518E;</p>  <!-- Display: 冎 -->

URL Encoding:

// 冎 URL encoding
https://unicodefinder.com/search.php?query=%E5%86%8E

Encodings

MD5:

c930c6c015b64b957f1c46daada5c603

SHA1:

7059759e0b8fdb7b7d34d0152d5ea7115b824233

Base64:

5YaO