Unicode Finder

"寬" U+5BEC(CJK UNIFIED IDEOGRAPH-5BEC)

U+5BEC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5BEC

Programming

C
\u5BEC
JavaScript
\u5BEC
Java
\u5BEC
Json
\u5BEC
Python
\u5BEC
Perl
\x{5BEC}
PHP
\x{5BEC}
Ruby
\u{5BEC}
Rust
\u{5BEC}
Go
\u5BEC

Web

CSS
\005BEC
HtmlDecimal
寬
HtmlHexadecimal
寬
Url
%E5%AF%AC

Code

MD5
f4b109ac9bc22cc03a5d888b384c8b3a
Sha1
3c4a51be1bc5c8c796bb47c413126cc0a1ce826a
Base64
5a+s

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5BEC';
console.log(char);  // Output: 寬

Java:

char c = '\u5BEC';
System.out.println(c);  // Output: 寬

JSON:

{"text": "\u5BEC"}  // Value: 寬

Python:

char = '\u5BEC'
print(char)  # Output: 寬

Perl:

my $char = "\x{5BEC}";
print $char;  # Output: 寬

PHP:

$char = "\x{5BEC}";
echo $char;  // Output: 寬

Ruby:

char = "\u{5BEC}"
puts char  # Output: 寬

Rust:

let c = '\u{5BEC}';
println!("{}", c);  // Output: 寬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005BEC";  /* Display: 寬 */
}

HTML Decimal:

<p>HTML decimal: &#23532;</p>  <!-- Display: 寬 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BEC;</p>  <!-- Display: 寬 -->

URL Encoding:

// 寬 URL encoding
https://unicodefinder.com/search.php?query=%E5%AF%AC

Encodings

MD5:

f4b109ac9bc22cc03a5d888b384c8b3a

SHA1:

3c4a51be1bc5c8c796bb47c413126cc0a1ce826a

Base64:

5a+s