Unicode Finder

"荈" U+8348(CJK UNIFIED IDEOGRAPH-8348)

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

Programming

C
\u8348
JavaScript
\u8348
Java
\u8348
Json
\u8348
Python
\u8348
Perl
\x{8348}
PHP
\x{8348}
Ruby
\u{8348}
Rust
\u{8348}
Go
\u8348

Web

CSS
\008348
HtmlDecimal
荈
HtmlHexadecimal
荈
Url
%E8%8D%88

Code

MD5
7ae3070bb99239d124635fea2ef8b939
Sha1
9428a62ed5e9011d59f63b8fdcc5eced5dd798db
Base64
6I2I

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8348';
console.log(char);  // Output: 荈

Java:

char c = '\u8348';
System.out.println(c);  // Output: 荈

JSON:

{"text": "\u8348"}  // Value: 荈

Python:

char = '\u8348'
print(char)  # Output: 荈

Perl:

my $char = "\x{8348}";
print $char;  # Output: 荈

PHP:

$char = "\x{8348}";
echo $char;  // Output: 荈

Ruby:

char = "\u{8348}"
puts char  # Output: 荈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008348";  /* Display: 荈 */
}

HTML Decimal:

<p>HTML decimal: &#33608;</p>  <!-- Display: 荈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8348;</p>  <!-- Display: 荈 -->

URL Encoding:

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

Encodings

MD5:

7ae3070bb99239d124635fea2ef8b939

SHA1:

9428a62ed5e9011d59f63b8fdcc5eced5dd798db

Base64:

6I2I