Unicode Finder

"耥" U+8025(CJK UNIFIED IDEOGRAPH-8025)

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

Programming

C
\u8025
JavaScript
\u8025
Java
\u8025
Json
\u8025
Python
\u8025
Perl
\x{8025}
PHP
\x{8025}
Ruby
\u{8025}
Rust
\u{8025}
Go
\u8025

Web

CSS
\008025
HtmlDecimal
耥
HtmlHexadecimal
耥
Url
%E8%80%A5

Code

MD5
1fb50eec94ccda8d4d4ce31b22610db6
Sha1
35a4604b7c978a5916fb3922953aaa399ef10108
Base64
6ICl

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8025';
console.log(char);  // Output: 耥

Java:

char c = '\u8025';
System.out.println(c);  // Output: 耥

JSON:

{"text": "\u8025"}  // Value: 耥

Python:

char = '\u8025'
print(char)  # Output: 耥

Perl:

my $char = "\x{8025}";
print $char;  # Output: 耥

PHP:

$char = "\x{8025}";
echo $char;  // Output: 耥

Ruby:

char = "\u{8025}"
puts char  # Output: 耥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008025";  /* Display: 耥 */
}

HTML Decimal:

<p>HTML decimal: &#32805;</p>  <!-- Display: 耥 -->

HTML Hexadecimal:

<p>HTML hex: &#x8025;</p>  <!-- Display: 耥 -->

URL Encoding:

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

Encodings

MD5:

1fb50eec94ccda8d4d4ce31b22610db6

SHA1:

35a4604b7c978a5916fb3922953aaa399ef10108

Base64:

6ICl