Unicode Finder

"椅" U+6905(CJK UNIFIED IDEOGRAPH-6905)

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

Programming

C
\u6905
JavaScript
\u6905
Java
\u6905
Json
\u6905
Python
\u6905
Perl
\x{6905}
PHP
\x{6905}
Ruby
\u{6905}
Rust
\u{6905}
Go
\u6905

Web

CSS
\006905
HtmlDecimal
椅
HtmlHexadecimal
椅
Url
%E6%A4%85

Code

MD5
732515816d368d2a55df65691e3d0d96
Sha1
618be2726b51ad9468f17a1c18c7e538983b4c20
Base64
5qSF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6905';
console.log(char);  // Output: 椅

Java:

char c = '\u6905';
System.out.println(c);  // Output: 椅

JSON:

{"text": "\u6905"}  // Value: 椅

Python:

char = '\u6905'
print(char)  # Output: 椅

Perl:

my $char = "\x{6905}";
print $char;  # Output: 椅

PHP:

$char = "\x{6905}";
echo $char;  // Output: 椅

Ruby:

char = "\u{6905}"
puts char  # Output: 椅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006905";  /* Display: 椅 */
}

HTML Decimal:

<p>HTML decimal: &#26885;</p>  <!-- Display: 椅 -->

HTML Hexadecimal:

<p>HTML hex: &#x6905;</p>  <!-- Display: 椅 -->

URL Encoding:

// 椅 URL encoding
https://unicodefinder.com/search.php?query=%E6%A4%85

Encodings

MD5:

732515816d368d2a55df65691e3d0d96

SHA1:

618be2726b51ad9468f17a1c18c7e538983b4c20

Base64:

5qSF