Unicode Finder

"懿" U+61FF(CJK UNIFIED IDEOGRAPH-61FF)

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

Programming

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

Web

CSS
\0061FF
HtmlDecimal
懿
HtmlHexadecimal
懿
Url
%E6%87%BF

Code

MD5
edc6d8ad18e0d04c1153591e44ab27b0
Sha1
7d1ce8f0a5287021139d60da591b9cd5e66e7b00
Base64
5oe/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u61FF';
console.log(char);  // Output: 懿

Java:

char c = '\u61FF';
System.out.println(c);  // Output: 懿

JSON:

{"text": "\u61FF"}  // Value: 懿

Python:

char = '\u61FF'
print(char)  # Output: 懿

Perl:

my $char = "\x{61FF}";
print $char;  # Output: 懿

PHP:

$char = "\x{61FF}";
echo $char;  // Output: 懿

Ruby:

char = "\u{61FF}"
puts char  # Output: 懿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25087;</p>  <!-- Display: 懿 -->

HTML Hexadecimal:

<p>HTML hex: &#x61FF;</p>  <!-- Display: 懿 -->

URL Encoding:

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

Encodings

MD5:

edc6d8ad18e0d04c1153591e44ab27b0

SHA1:

7d1ce8f0a5287021139d60da591b9cd5e66e7b00

Base64:

5oe/