Unicode Finder

"萣" U+8423(CJK UNIFIED IDEOGRAPH-8423)

U+8423
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-8423

Programming

C
\u8423
JavaScript
\u8423
Java
\u8423
Json
\u8423
Python
\u8423
Perl
\x{8423}
PHP
\x{8423}
Ruby
\u{8423}
Rust
\u{8423}
Go
\u8423

Web

CSS
\008423
HtmlDecimal
萣
HtmlHexadecimal
萣
Url
%E8%90%A3

Code

MD5
fe39c91c6e865b61ea698419d2631aee
Sha1
21656f05341c2fc6b7de056053fe3a59ea09e55a
Base64
6JCj

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8423';
console.log(char);  // Output: 萣

Java:

char c = '\u8423';
System.out.println(c);  // Output: 萣

JSON:

{"text": "\u8423"}  // Value: 萣

Python:

char = '\u8423'
print(char)  # Output: 萣

Perl:

my $char = "\x{8423}";
print $char;  # Output: 萣

PHP:

$char = "\x{8423}";
echo $char;  // Output: 萣

Ruby:

char = "\u{8423}"
puts char  # Output: 萣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008423";  /* Display: 萣 */
}

HTML Decimal:

<p>HTML decimal: &#33827;</p>  <!-- Display: 萣 -->

HTML Hexadecimal:

<p>HTML hex: &#x8423;</p>  <!-- Display: 萣 -->

URL Encoding:

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

Encodings

MD5:

fe39c91c6e865b61ea698419d2631aee

SHA1:

21656f05341c2fc6b7de056053fe3a59ea09e55a

Base64:

6JCj