Unicode Finder

"桅" U+6845(CJK UNIFIED IDEOGRAPH-6845)

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

Programming

C
\u6845
JavaScript
\u6845
Java
\u6845
Json
\u6845
Python
\u6845
Perl
\x{6845}
PHP
\x{6845}
Ruby
\u{6845}
Rust
\u{6845}
Go
\u6845

Web

CSS
\006845
HtmlDecimal
桅
HtmlHexadecimal
桅
Url
%E6%A1%85

Code

MD5
130e05b83edf92091220a78f9c516897
Sha1
e12bec17f4794e50c95bf2a120ac3168ab0c06c8
Base64
5qGF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6845';
console.log(char);  // Output: 桅

Java:

char c = '\u6845';
System.out.println(c);  // Output: 桅

JSON:

{"text": "\u6845"}  // Value: 桅

Python:

char = '\u6845'
print(char)  # Output: 桅

Perl:

my $char = "\x{6845}";
print $char;  # Output: 桅

PHP:

$char = "\x{6845}";
echo $char;  // Output: 桅

Ruby:

char = "\u{6845}"
puts char  # Output: 桅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006845";  /* Display: 桅 */
}

HTML Decimal:

<p>HTML decimal: &#26693;</p>  <!-- Display: 桅 -->

HTML Hexadecimal:

<p>HTML hex: &#x6845;</p>  <!-- Display: 桅 -->

URL Encoding:

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

Encodings

MD5:

130e05b83edf92091220a78f9c516897

SHA1:

e12bec17f4794e50c95bf2a120ac3168ab0c06c8

Base64:

5qGF