Unicode Finder

"荆" U+8346(CJK UNIFIED IDEOGRAPH-8346)

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

Programming

C
\u8346
JavaScript
\u8346
Java
\u8346
Json
\u8346
Python
\u8346
Perl
\x{8346}
PHP
\x{8346}
Ruby
\u{8346}
Rust
\u{8346}
Go
\u8346

Web

CSS
\008346
HtmlDecimal
荆
HtmlHexadecimal
荆
Url
%E8%8D%86

Code

MD5
d2a9d9a57fdf04a6bf15448fcb203e20
Sha1
73860066f80ef2867cbb1cc45a28fb5082e3fe20
Base64
6I2G

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8346';
console.log(char);  // Output: 荆

Java:

char c = '\u8346';
System.out.println(c);  // Output: 荆

JSON:

{"text": "\u8346"}  // Value: 荆

Python:

char = '\u8346'
print(char)  # Output: 荆

Perl:

my $char = "\x{8346}";
print $char;  # Output: 荆

PHP:

$char = "\x{8346}";
echo $char;  // Output: 荆

Ruby:

char = "\u{8346}"
puts char  # Output: 荆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008346";  /* Display: 荆 */
}

HTML Decimal:

<p>HTML decimal: &#33606;</p>  <!-- Display: 荆 -->

HTML Hexadecimal:

<p>HTML hex: &#x8346;</p>  <!-- Display: 荆 -->

URL Encoding:

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

Encodings

MD5:

d2a9d9a57fdf04a6bf15448fcb203e20

SHA1:

73860066f80ef2867cbb1cc45a28fb5082e3fe20

Base64:

6I2G