Unicode Finder

"蠩" U+8829(CJK UNIFIED IDEOGRAPH-8829)

U+8829
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8829

Programming

C
\u8829
JavaScript
\u8829
Java
\u8829
Json
\u8829
Python
\u8829
Perl
\x{8829}
PHP
\x{8829}
Ruby
\u{8829}
Rust
\u{8829}
Go
\u8829

Web

CSS
\008829
HtmlDecimal
蠩
HtmlHexadecimal
蠩
Url
%E8%A0%A9

Code

MD5
4bf5e80f6d47ac55c6ff9a1bd106e8e9
Sha1
83973819701b68f724a8a4db7b814784f6e3510d
Base64
6KCp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8829';
console.log(char);  // Output: 蠩

Java:

char c = '\u8829';
System.out.println(c);  // Output: 蠩

JSON:

{"text": "\u8829"}  // Value: 蠩

Python:

char = '\u8829'
print(char)  # Output: 蠩

Perl:

my $char = "\x{8829}";
print $char;  # Output: 蠩

PHP:

$char = "\x{8829}";
echo $char;  // Output: 蠩

Ruby:

char = "\u{8829}"
puts char  # Output: 蠩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008829";  /* Display: 蠩 */
}

HTML Decimal:

<p>HTML decimal: &#34857;</p>  <!-- Display: 蠩 -->

HTML Hexadecimal:

<p>HTML hex: &#x8829;</p>  <!-- Display: 蠩 -->

URL Encoding:

// 蠩 URL encoding
https://unicodefinder.com/search.php?query=%E8%A0%A9

Encodings

MD5:

4bf5e80f6d47ac55c6ff9a1bd106e8e9

SHA1:

83973819701b68f724a8a4db7b814784f6e3510d

Base64:

6KCp