Unicode Finder

"冂" U+5182(CJK UNIFIED IDEOGRAPH-5182)

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

Programming

C
\u5182
JavaScript
\u5182
Java
\u5182
Json
\u5182
Python
\u5182
Perl
\x{5182}
PHP
\x{5182}
Ruby
\u{5182}
Rust
\u{5182}
Go
\u5182

Web

CSS
\005182
HtmlDecimal
冂
HtmlHexadecimal
冂
Url
%E5%86%82

Code

MD5
311d9972821b416db1474b3c7157fdc2
Sha1
59760104c848b03bd6966e4835eeab13ddf5bdff
Base64
5YaC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5182';
console.log(char);  // Output: 冂

Java:

char c = '\u5182';
System.out.println(c);  // Output: 冂

JSON:

{"text": "\u5182"}  // Value: 冂

Python:

char = '\u5182'
print(char)  # Output: 冂

Perl:

my $char = "\x{5182}";
print $char;  # Output: 冂

PHP:

$char = "\x{5182}";
echo $char;  // Output: 冂

Ruby:

char = "\u{5182}"
puts char  # Output: 冂

Rust:

let c = '\u{5182}';
println!("{}", c);  // Output: 冂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005182";  /* Display: 冂 */
}

HTML Decimal:

<p>HTML decimal: &#20866;</p>  <!-- Display: 冂 -->

HTML Hexadecimal:

<p>HTML hex: &#x5182;</p>  <!-- Display: 冂 -->

URL Encoding:

// 冂 URL encoding
https://unicodefinder.com/search.php?query=%E5%86%82

Encodings

MD5:

311d9972821b416db1474b3c7157fdc2

SHA1:

59760104c848b03bd6966e4835eeab13ddf5bdff

Base64:

5YaC