Unicode Finder

"奢" U+5962(CJK UNIFIED IDEOGRAPH-5962)

U+5962
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5962

Programming

C
\u5962
JavaScript
\u5962
Java
\u5962
Json
\u5962
Python
\u5962
Perl
\x{5962}
PHP
\x{5962}
Ruby
\u{5962}
Rust
\u{5962}
Go
\u5962

Web

CSS
\005962
HtmlDecimal
奢
HtmlHexadecimal
奢
Url
%E5%A5%A2

Code

MD5
f7f6fe6d47039fba3714df721ff7f8f7
Sha1
d5bc4140a9f2e9cdd21f33328278682ae4091dd6
Base64
5aWi

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5962';
console.log(char);  // Output: 奢

Java:

char c = '\u5962';
System.out.println(c);  // Output: 奢

JSON:

{"text": "\u5962"}  // Value: 奢

Python:

char = '\u5962'
print(char)  # Output: 奢

Perl:

my $char = "\x{5962}";
print $char;  # Output: 奢

PHP:

$char = "\x{5962}";
echo $char;  // Output: 奢

Ruby:

char = "\u{5962}"
puts char  # Output: 奢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005962";  /* Display: 奢 */
}

HTML Decimal:

<p>HTML decimal: &#22882;</p>  <!-- Display: 奢 -->

HTML Hexadecimal:

<p>HTML hex: &#x5962;</p>  <!-- Display: 奢 -->

URL Encoding:

// 奢 URL encoding
https://unicodefinder.com/search.php?query=%E5%A5%A2

Encodings

MD5:

f7f6fe6d47039fba3714df721ff7f8f7

SHA1:

d5bc4140a9f2e9cdd21f33328278682ae4091dd6

Base64:

5aWi