Unicode Finder

"憂" U+6182(CJK UNIFIED IDEOGRAPH-6182)

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

Programming

C
\u6182
JavaScript
\u6182
Java
\u6182
Json
\u6182
Python
\u6182
Perl
\x{6182}
PHP
\x{6182}
Ruby
\u{6182}
Rust
\u{6182}
Go
\u6182

Web

CSS
\006182
HtmlDecimal
憂
HtmlHexadecimal
憂
Url
%E6%86%82

Code

MD5
9d3ba245a38c32346d2d395a65b3bea7
Sha1
e91b29cb3929c32d220923033b860cfd24433c66
Base64
5oaC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6182';
console.log(char);  // Output: 憂

Java:

char c = '\u6182';
System.out.println(c);  // Output: 憂

JSON:

{"text": "\u6182"}  // Value: 憂

Python:

char = '\u6182'
print(char)  # Output: 憂

Perl:

my $char = "\x{6182}";
print $char;  # Output: 憂

PHP:

$char = "\x{6182}";
echo $char;  // Output: 憂

Ruby:

char = "\u{6182}"
puts char  # Output: 憂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006182";  /* Display: 憂 */
}

HTML Decimal:

<p>HTML decimal: &#24962;</p>  <!-- Display: 憂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6182;</p>  <!-- Display: 憂 -->

URL Encoding:

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

Encodings

MD5:

9d3ba245a38c32346d2d395a65b3bea7

SHA1:

e91b29cb3929c32d220923033b860cfd24433c66

Base64:

5oaC