Unicode Finder

"桱" U+6871(CJK UNIFIED IDEOGRAPH-6871)

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

Programming

C
\u6871
JavaScript
\u6871
Java
\u6871
Json
\u6871
Python
\u6871
Perl
\x{6871}
PHP
\x{6871}
Ruby
\u{6871}
Rust
\u{6871}
Go
\u6871

Web

CSS
\006871
HtmlDecimal
桱
HtmlHexadecimal
桱
Url
%E6%A1%B1

Code

MD5
195487538aa596ce218753828349a516
Sha1
ee8f6875d16b567e654bf6a06995f99399d8bea6
Base64
5qGx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6871';
console.log(char);  // Output: 桱

Java:

char c = '\u6871';
System.out.println(c);  // Output: 桱

JSON:

{"text": "\u6871"}  // Value: 桱

Python:

char = '\u6871'
print(char)  # Output: 桱

Perl:

my $char = "\x{6871}";
print $char;  # Output: 桱

PHP:

$char = "\x{6871}";
echo $char;  // Output: 桱

Ruby:

char = "\u{6871}"
puts char  # Output: 桱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006871";  /* Display: 桱 */
}

HTML Decimal:

<p>HTML decimal: &#26737;</p>  <!-- Display: 桱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6871;</p>  <!-- Display: 桱 -->

URL Encoding:

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

Encodings

MD5:

195487538aa596ce218753828349a516

SHA1:

ee8f6875d16b567e654bf6a06995f99399d8bea6

Base64:

5qGx