Unicode Finder

"萳" U+8433(CJK UNIFIED IDEOGRAPH-8433)

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

Programming

C
\u8433
JavaScript
\u8433
Java
\u8433
Json
\u8433
Python
\u8433
Perl
\x{8433}
PHP
\x{8433}
Ruby
\u{8433}
Rust
\u{8433}
Go
\u8433

Web

CSS
\008433
HtmlDecimal
萳
HtmlHexadecimal
萳
Url
%E8%90%B3

Code

MD5
3a097d7c3b0d2ce8b0dd70ec726f7977
Sha1
5959e64d91fcaf6d2a1ada9055171972e584cd3e
Base64
6JCz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8433';
console.log(char);  // Output: 萳

Java:

char c = '\u8433';
System.out.println(c);  // Output: 萳

JSON:

{"text": "\u8433"}  // Value: 萳

Python:

char = '\u8433'
print(char)  # Output: 萳

Perl:

my $char = "\x{8433}";
print $char;  # Output: 萳

PHP:

$char = "\x{8433}";
echo $char;  // Output: 萳

Ruby:

char = "\u{8433}"
puts char  # Output: 萳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008433";  /* Display: 萳 */
}

HTML Decimal:

<p>HTML decimal: &#33843;</p>  <!-- Display: 萳 -->

HTML Hexadecimal:

<p>HTML hex: &#x8433;</p>  <!-- Display: 萳 -->

URL Encoding:

// 萳 URL encoding
https://unicodefinder.com/search.php?query=%E8%90%B3

Encodings

MD5:

3a097d7c3b0d2ce8b0dd70ec726f7977

SHA1:

5959e64d91fcaf6d2a1ada9055171972e584cd3e

Base64:

6JCz