Unicode Finder

"桡" U+6861(CJK UNIFIED IDEOGRAPH-6861)

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

Programming

C
\u6861
JavaScript
\u6861
Java
\u6861
Json
\u6861
Python
\u6861
Perl
\x{6861}
PHP
\x{6861}
Ruby
\u{6861}
Rust
\u{6861}
Go
\u6861

Web

CSS
\006861
HtmlDecimal
桡
HtmlHexadecimal
桡
Url
%E6%A1%A1

Code

MD5
d349f99c667853c9ad204a07b7baf35b
Sha1
bfd7a8eea503fca260c700bd0d5a24211f9222f9
Base64
5qGh

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6861';
console.log(char);  // Output: 桡

Java:

char c = '\u6861';
System.out.println(c);  // Output: 桡

JSON:

{"text": "\u6861"}  // Value: 桡

Python:

char = '\u6861'
print(char)  # Output: 桡

Perl:

my $char = "\x{6861}";
print $char;  # Output: 桡

PHP:

$char = "\x{6861}";
echo $char;  // Output: 桡

Ruby:

char = "\u{6861}"
puts char  # Output: 桡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006861";  /* Display: 桡 */
}

HTML Decimal:

<p>HTML decimal: &#26721;</p>  <!-- Display: 桡 -->

HTML Hexadecimal:

<p>HTML hex: &#x6861;</p>  <!-- Display: 桡 -->

URL Encoding:

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

Encodings

MD5:

d349f99c667853c9ad204a07b7baf35b

SHA1:

bfd7a8eea503fca260c700bd0d5a24211f9222f9

Base64:

5qGh