Unicode Finder

"耤" U+8024(CJK UNIFIED IDEOGRAPH-8024)

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

Programming

C
\u8024
JavaScript
\u8024
Java
\u8024
Json
\u8024
Python
\u8024
Perl
\x{8024}
PHP
\x{8024}
Ruby
\u{8024}
Rust
\u{8024}
Go
\u8024

Web

CSS
\008024
HtmlDecimal
耤
HtmlHexadecimal
耤
Url
%E8%80%A4

Code

MD5
5b8b35d3fa5bdac15880f79a77ebbded
Sha1
4af4c63469a6523c76ed628b6204889da385ae63
Base64
6ICk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8024';
console.log(char);  // Output: 耤

Java:

char c = '\u8024';
System.out.println(c);  // Output: 耤

JSON:

{"text": "\u8024"}  // Value: 耤

Python:

char = '\u8024'
print(char)  # Output: 耤

Perl:

my $char = "\x{8024}";
print $char;  # Output: 耤

PHP:

$char = "\x{8024}";
echo $char;  // Output: 耤

Ruby:

char = "\u{8024}"
puts char  # Output: 耤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008024";  /* Display: 耤 */
}

HTML Decimal:

<p>HTML decimal: &#32804;</p>  <!-- Display: 耤 -->

HTML Hexadecimal:

<p>HTML hex: &#x8024;</p>  <!-- Display: 耤 -->

URL Encoding:

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

Encodings

MD5:

5b8b35d3fa5bdac15880f79a77ebbded

SHA1:

4af4c63469a6523c76ed628b6204889da385ae63

Base64:

6ICk