Unicode Finder

"耲" U+8032(CJK UNIFIED IDEOGRAPH-8032)

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

Programming

C
\u8032
JavaScript
\u8032
Java
\u8032
Json
\u8032
Python
\u8032
Perl
\x{8032}
PHP
\x{8032}
Ruby
\u{8032}
Rust
\u{8032}
Go
\u8032

Web

CSS
\008032
HtmlDecimal
耲
HtmlHexadecimal
耲
Url
%E8%80%B2

Code

MD5
c8a8edf52a1deba93e12b0f2c59e704b
Sha1
44d53381ba834e1a7f13b59b47e59c30097bb4fc
Base64
6ICy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8032';
console.log(char);  // Output: 耲

Java:

char c = '\u8032';
System.out.println(c);  // Output: 耲

JSON:

{"text": "\u8032"}  // Value: 耲

Python:

char = '\u8032'
print(char)  # Output: 耲

Perl:

my $char = "\x{8032}";
print $char;  # Output: 耲

PHP:

$char = "\x{8032}";
echo $char;  // Output: 耲

Ruby:

char = "\u{8032}"
puts char  # Output: 耲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008032";  /* Display: 耲 */
}

HTML Decimal:

<p>HTML decimal: &#32818;</p>  <!-- Display: 耲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8032;</p>  <!-- Display: 耲 -->

URL Encoding:

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

Encodings

MD5:

c8a8edf52a1deba93e12b0f2c59e704b

SHA1:

44d53381ba834e1a7f13b59b47e59c30097bb4fc

Base64:

6ICy