Unicode Finder

"栅" U+6805(CJK UNIFIED IDEOGRAPH-6805)

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

Programming

C
\u6805
JavaScript
\u6805
Java
\u6805
Json
\u6805
Python
\u6805
Perl
\x{6805}
PHP
\x{6805}
Ruby
\u{6805}
Rust
\u{6805}
Go
\u6805

Web

CSS
\006805
HtmlDecimal
栅
HtmlHexadecimal
栅
Url
%E6%A0%85

Code

MD5
9954b193ef9083ba3e36c6cf7d634e15
Sha1
25fbc0d7b3013b6dbf73431a513b028831275c1b
Base64
5qCF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6805';
console.log(char);  // Output: 栅

Java:

char c = '\u6805';
System.out.println(c);  // Output: 栅

JSON:

{"text": "\u6805"}  // Value: 栅

Python:

char = '\u6805'
print(char)  # Output: 栅

Perl:

my $char = "\x{6805}";
print $char;  # Output: 栅

PHP:

$char = "\x{6805}";
echo $char;  // Output: 栅

Ruby:

char = "\u{6805}"
puts char  # Output: 栅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006805";  /* Display: 栅 */
}

HTML Decimal:

<p>HTML decimal: &#26629;</p>  <!-- Display: 栅 -->

HTML Hexadecimal:

<p>HTML hex: &#x6805;</p>  <!-- Display: 栅 -->

URL Encoding:

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

Encodings

MD5:

9954b193ef9083ba3e36c6cf7d634e15

SHA1:

25fbc0d7b3013b6dbf73431a513b028831275c1b

Base64:

5qCF