Unicode Finder

"懩" U+61E9(CJK UNIFIED IDEOGRAPH-61E9)

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

Programming

C
\u61E9
JavaScript
\u61E9
Java
\u61E9
Json
\u61E9
Python
\u61E9
Perl
\x{61E9}
PHP
\x{61E9}
Ruby
\u{61E9}
Rust
\u{61E9}
Go
\u61E9

Web

CSS
\0061E9
HtmlDecimal
懩
HtmlHexadecimal
懩
Url
%E6%87%A9

Code

MD5
d992a7dda3162465fc380842473077eb
Sha1
62d81792b6698486cfbf84f27fc55771235511cc
Base64
5oep

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u61E9';
console.log(char);  // Output: 懩

Java:

char c = '\u61E9';
System.out.println(c);  // Output: 懩

JSON:

{"text": "\u61E9"}  // Value: 懩

Python:

char = '\u61E9'
print(char)  # Output: 懩

Perl:

my $char = "\x{61E9}";
print $char;  # Output: 懩

PHP:

$char = "\x{61E9}";
echo $char;  // Output: 懩

Ruby:

char = "\u{61E9}"
puts char  # Output: 懩

Rust:

let c = '\u{61E9}';
println!("{}", c);  // Output: 懩

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0061E9";  /* Display: 懩 */
}

HTML Decimal:

<p>HTML decimal: &#25065;</p>  <!-- Display: 懩 -->

HTML Hexadecimal:

<p>HTML hex: &#x61E9;</p>  <!-- Display: 懩 -->

URL Encoding:

// 懩 URL encoding
https://unicodefinder.com/search.php?query=%E6%87%A9

Encodings

MD5:

d992a7dda3162465fc380842473077eb

SHA1:

62d81792b6698486cfbf84f27fc55771235511cc

Base64:

5oep