Unicode Finder

"蒩" U+84A9(CJK UNIFIED IDEOGRAPH-84A9)

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

Programming

C
\u84A9
JavaScript
\u84A9
Java
\u84A9
Json
\u84A9
Python
\u84A9
Perl
\x{84A9}
PHP
\x{84A9}
Ruby
\u{84A9}
Rust
\u{84A9}
Go
\u84A9

Web

CSS
\0084A9
HtmlDecimal
蒩
HtmlHexadecimal
蒩
Url
%E8%92%A9

Code

MD5
b26381d1c60a1f9ae2963651b2a611d9
Sha1
414e4dcecfe0a581c78190dd0e6cc82377f57197
Base64
6JKp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u84A9';
console.log(char);  // Output: 蒩

Java:

char c = '\u84A9';
System.out.println(c);  // Output: 蒩

JSON:

{"text": "\u84A9"}  // Value: 蒩

Python:

char = '\u84A9'
print(char)  # Output: 蒩

Perl:

my $char = "\x{84A9}";
print $char;  # Output: 蒩

PHP:

$char = "\x{84A9}";
echo $char;  // Output: 蒩

Ruby:

char = "\u{84A9}"
puts char  # Output: 蒩

Rust:

let c = '\u{84A9}';
println!("{}", c);  // Output: 蒩

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0084A9";  /* Display: 蒩 */
}

HTML Decimal:

<p>HTML decimal: &#33961;</p>  <!-- Display: 蒩 -->

HTML Hexadecimal:

<p>HTML hex: &#x84A9;</p>  <!-- Display: 蒩 -->

URL Encoding:

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

Encodings

MD5:

b26381d1c60a1f9ae2963651b2a611d9

SHA1:

414e4dcecfe0a581c78190dd0e6cc82377f57197

Base64:

6JKp