Unicode Finder

"荅" U+8345(CJK UNIFIED IDEOGRAPH-8345)

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

Programming

C
\u8345
JavaScript
\u8345
Java
\u8345
Json
\u8345
Python
\u8345
Perl
\x{8345}
PHP
\x{8345}
Ruby
\u{8345}
Rust
\u{8345}
Go
\u8345

Web

CSS
\008345
HtmlDecimal
荅
HtmlHexadecimal
荅
Url
%E8%8D%85

Code

MD5
ed3919d080f231b2c40286d89219a254
Sha1
416bb26bb41e44f864adf4ab6416885c597b2d7a
Base64
6I2F

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8345';
console.log(char);  // Output: 荅

Java:

char c = '\u8345';
System.out.println(c);  // Output: 荅

JSON:

{"text": "\u8345"}  // Value: 荅

Python:

char = '\u8345'
print(char)  # Output: 荅

Perl:

my $char = "\x{8345}";
print $char;  # Output: 荅

PHP:

$char = "\x{8345}";
echo $char;  // Output: 荅

Ruby:

char = "\u{8345}"
puts char  # Output: 荅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008345";  /* Display: 荅 */
}

HTML Decimal:

<p>HTML decimal: &#33605;</p>  <!-- Display: 荅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8345;</p>  <!-- Display: 荅 -->

URL Encoding:

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

Encodings

MD5:

ed3919d080f231b2c40286d89219a254

SHA1:

416bb26bb41e44f864adf4ab6416885c597b2d7a

Base64:

6I2F