Unicode Finder

"椆" U+6906(CJK UNIFIED IDEOGRAPH-6906)

U+6906
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6906

Programming

C
\u6906
JavaScript
\u6906
Java
\u6906
Json
\u6906
Python
\u6906
Perl
\x{6906}
PHP
\x{6906}
Ruby
\u{6906}
Rust
\u{6906}
Go
\u6906

Web

CSS
\006906
HtmlDecimal
椆
HtmlHexadecimal
椆
Url
%E6%A4%86

Code

MD5
75a3f626256254346a4be80cb69a4171
Sha1
750df060cecaf2f61b04edad9ea08b633060a19b
Base64
5qSG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6906';
console.log(char);  // Output: 椆

Java:

char c = '\u6906';
System.out.println(c);  // Output: 椆

JSON:

{"text": "\u6906"}  // Value: 椆

Python:

char = '\u6906'
print(char)  # Output: 椆

Perl:

my $char = "\x{6906}";
print $char;  # Output: 椆

PHP:

$char = "\x{6906}";
echo $char;  // Output: 椆

Ruby:

char = "\u{6906}"
puts char  # Output: 椆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006906";  /* Display: 椆 */
}

HTML Decimal:

<p>HTML decimal: &#26886;</p>  <!-- Display: 椆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6906;</p>  <!-- Display: 椆 -->

URL Encoding:

// 椆 URL encoding
https://unicodefinder.com/search.php?query=%E6%A4%86

Encodings

MD5:

75a3f626256254346a4be80cb69a4171

SHA1:

750df060cecaf2f61b04edad9ea08b633060a19b

Base64:

5qSG