Unicode Finder

"荄" U+8344(CJK UNIFIED IDEOGRAPH-8344)

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

Programming

C
\u8344
JavaScript
\u8344
Java
\u8344
Json
\u8344
Python
\u8344
Perl
\x{8344}
PHP
\x{8344}
Ruby
\u{8344}
Rust
\u{8344}
Go
\u8344

Web

CSS
\008344
HtmlDecimal
荄
HtmlHexadecimal
荄
Url
%E8%8D%84

Code

MD5
bdf98fb439019a6db0e8b23b03c3885f
Sha1
30825a6a84c384db0ba41e5e2ebdbc21ae0f34e2
Base64
6I2E

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8344';
console.log(char);  // Output: 荄

Java:

char c = '\u8344';
System.out.println(c);  // Output: 荄

JSON:

{"text": "\u8344"}  // Value: 荄

Python:

char = '\u8344'
print(char)  # Output: 荄

Perl:

my $char = "\x{8344}";
print $char;  # Output: 荄

PHP:

$char = "\x{8344}";
echo $char;  // Output: 荄

Ruby:

char = "\u{8344}"
puts char  # Output: 荄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008344";  /* Display: 荄 */
}

HTML Decimal:

<p>HTML decimal: &#33604;</p>  <!-- Display: 荄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8344;</p>  <!-- Display: 荄 -->

URL Encoding:

// 荄 URL encoding
https://unicodefinder.com/search.php?query=%E8%8D%84

Encodings

MD5:

bdf98fb439019a6db0e8b23b03c3885f

SHA1:

30825a6a84c384db0ba41e5e2ebdbc21ae0f34e2

Base64:

6I2E