Unicode Finder

"朩" U+6729(CJK UNIFIED IDEOGRAPH-6729)

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

Programming

C
\u6729
JavaScript
\u6729
Java
\u6729
Json
\u6729
Python
\u6729
Perl
\x{6729}
PHP
\x{6729}
Ruby
\u{6729}
Rust
\u{6729}
Go
\u6729

Web

CSS
\006729
HtmlDecimal
朩
HtmlHexadecimal
朩
Url
%E6%9C%A9

Code

MD5
edb05764f706d08b65f8b941ff597c3f
Sha1
99df6971c010ff3af3ea9e9556fc774db899ab55
Base64
5pyp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6729';
console.log(char);  // Output: 朩

Java:

char c = '\u6729';
System.out.println(c);  // Output: 朩

JSON:

{"text": "\u6729"}  // Value: 朩

Python:

char = '\u6729'
print(char)  # Output: 朩

Perl:

my $char = "\x{6729}";
print $char;  # Output: 朩

PHP:

$char = "\x{6729}";
echo $char;  // Output: 朩

Ruby:

char = "\u{6729}"
puts char  # Output: 朩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006729";  /* Display: 朩 */
}

HTML Decimal:

<p>HTML decimal: &#26409;</p>  <!-- Display: 朩 -->

HTML Hexadecimal:

<p>HTML hex: &#x6729;</p>  <!-- Display: 朩 -->

URL Encoding:

// 朩 URL encoding
https://unicodefinder.com/search.php?query=%E6%9C%A9

Encodings

MD5:

edb05764f706d08b65f8b941ff597c3f

SHA1:

99df6971c010ff3af3ea9e9556fc774db899ab55

Base64:

5pyp