Unicode Finder

"懟" U+61DF(CJK UNIFIED IDEOGRAPH-61DF)

U+61DF
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-61DF

Programming

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

Web

CSS
\0061DF
HtmlDecimal
懟
HtmlHexadecimal
懟
Url
%E6%87%9F

Code

MD5
c7443e62b37927836a54e546ad80f807
Sha1
f43d3d1be85917c31d1afcd054e5ca8379b1e5b7
Base64
5oef

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u61DF';
console.log(char);  // Output: 懟

Java:

char c = '\u61DF';
System.out.println(c);  // Output: 懟

JSON:

{"text": "\u61DF"}  // Value: 懟

Python:

char = '\u61DF'
print(char)  # Output: 懟

Perl:

my $char = "\x{61DF}";
print $char;  # Output: 懟

PHP:

$char = "\x{61DF}";
echo $char;  // Output: 懟

Ruby:

char = "\u{61DF}"
puts char  # Output: 懟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25055;</p>  <!-- Display: 懟 -->

HTML Hexadecimal:

<p>HTML hex: &#x61DF;</p>  <!-- Display: 懟 -->

URL Encoding:

// 懟 URL encoding
https://unicodefinder.com/search.php?query=%E6%87%9F

Encodings

MD5:

c7443e62b37927836a54e546ad80f807

SHA1:

f43d3d1be85917c31d1afcd054e5ca8379b1e5b7

Base64:

5oef