Unicode Finder

"冋" U+518B(CJK UNIFIED IDEOGRAPH-518B)

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

Programming

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

Web

CSS
\00518B
HtmlDecimal
冋
HtmlHexadecimal
冋
Url
%E5%86%8B

Code

MD5
ec4f5f0032c3f3200bc0c1a0d7ba409a
Sha1
797937fe6811c0e2c423291043c01561ec0e633d
Base64
5YaL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u518B';
console.log(char);  // Output: 冋

Java:

char c = '\u518B';
System.out.println(c);  // Output: 冋

JSON:

{"text": "\u518B"}  // Value: 冋

Python:

char = '\u518B'
print(char)  # Output: 冋

Perl:

my $char = "\x{518B}";
print $char;  # Output: 冋

PHP:

$char = "\x{518B}";
echo $char;  // Output: 冋

Ruby:

char = "\u{518B}"
puts char  # Output: 冋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20875;</p>  <!-- Display: 冋 -->

HTML Hexadecimal:

<p>HTML hex: &#x518B;</p>  <!-- Display: 冋 -->

URL Encoding:

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

Encodings

MD5:

ec4f5f0032c3f3200bc0c1a0d7ba409a

SHA1:

797937fe6811c0e2c423291043c01561ec0e633d

Base64:

5YaL