Unicode Finder

"荵" U+8375(CJK UNIFIED IDEOGRAPH-8375)

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

Programming

C
\u8375
JavaScript
\u8375
Java
\u8375
Json
\u8375
Python
\u8375
Perl
\x{8375}
PHP
\x{8375}
Ruby
\u{8375}
Rust
\u{8375}
Go
\u8375

Web

CSS
\008375
HtmlDecimal
荵
HtmlHexadecimal
荵
Url
%E8%8D%B5

Code

MD5
226ded89678510429c4a18e6fe571034
Sha1
8c5b1641723875af8c7c983d8fc1e5764d2869fa
Base64
6I21

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8375';
console.log(char);  // Output: 荵

Java:

char c = '\u8375';
System.out.println(c);  // Output: 荵

JSON:

{"text": "\u8375"}  // Value: 荵

Python:

char = '\u8375'
print(char)  # Output: 荵

Perl:

my $char = "\x{8375}";
print $char;  # Output: 荵

PHP:

$char = "\x{8375}";
echo $char;  // Output: 荵

Ruby:

char = "\u{8375}"
puts char  # Output: 荵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008375";  /* Display: 荵 */
}

HTML Decimal:

<p>HTML decimal: &#33653;</p>  <!-- Display: 荵 -->

HTML Hexadecimal:

<p>HTML hex: &#x8375;</p>  <!-- Display: 荵 -->

URL Encoding:

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

Encodings

MD5:

226ded89678510429c4a18e6fe571034

SHA1:

8c5b1641723875af8c7c983d8fc1e5764d2869fa

Base64:

6I21