Unicode Finder

"栱" U+6831(CJK UNIFIED IDEOGRAPH-6831)

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

Programming

C
\u6831
JavaScript
\u6831
Java
\u6831
Json
\u6831
Python
\u6831
Perl
\x{6831}
PHP
\x{6831}
Ruby
\u{6831}
Rust
\u{6831}
Go
\u6831

Web

CSS
\006831
HtmlDecimal
栱
HtmlHexadecimal
栱
Url
%E6%A0%B1

Code

MD5
6a2efdca2a5875d288d47192df8537fd
Sha1
a26f2e1630e4aa5bf9e82b6cb867f907b42c0cb1
Base64
5qCx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6831';
console.log(char);  // Output: 栱

Java:

char c = '\u6831';
System.out.println(c);  // Output: 栱

JSON:

{"text": "\u6831"}  // Value: 栱

Python:

char = '\u6831'
print(char)  # Output: 栱

Perl:

my $char = "\x{6831}";
print $char;  # Output: 栱

PHP:

$char = "\x{6831}";
echo $char;  // Output: 栱

Ruby:

char = "\u{6831}"
puts char  # Output: 栱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006831";  /* Display: 栱 */
}

HTML Decimal:

<p>HTML decimal: &#26673;</p>  <!-- Display: 栱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6831;</p>  <!-- Display: 栱 -->

URL Encoding:

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

Encodings

MD5:

6a2efdca2a5875d288d47192df8537fd

SHA1:

a26f2e1630e4aa5bf9e82b6cb867f907b42c0cb1

Base64:

5qCx