Unicode Finder

"耰" U+8030(CJK UNIFIED IDEOGRAPH-8030)

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

Programming

C
\u8030
JavaScript
\u8030
Java
\u8030
Json
\u8030
Python
\u8030
Perl
\x{8030}
PHP
\x{8030}
Ruby
\u{8030}
Rust
\u{8030}
Go
\u8030

Web

CSS
\008030
HtmlDecimal
耰
HtmlHexadecimal
耰
Url
%E8%80%B0

Code

MD5
d8abff7513cdf64e0834a1855c4f7dfd
Sha1
11803d02f13af0a6cdbf18fbb8814f8c97f9778d
Base64
6ICw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8030';
console.log(char);  // Output: 耰

Java:

char c = '\u8030';
System.out.println(c);  // Output: 耰

JSON:

{"text": "\u8030"}  // Value: 耰

Python:

char = '\u8030'
print(char)  # Output: 耰

Perl:

my $char = "\x{8030}";
print $char;  # Output: 耰

PHP:

$char = "\x{8030}";
echo $char;  // Output: 耰

Ruby:

char = "\u{8030}"
puts char  # Output: 耰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008030";  /* Display: 耰 */
}

HTML Decimal:

<p>HTML decimal: &#32816;</p>  <!-- Display: 耰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8030;</p>  <!-- Display: 耰 -->

URL Encoding:

// 耰 URL encoding
https://unicodefinder.com/search.php?query=%E8%80%B0

Encodings

MD5:

d8abff7513cdf64e0834a1855c4f7dfd

SHA1:

11803d02f13af0a6cdbf18fbb8814f8c97f9778d

Base64:

6ICw