Unicode Finder

"恋" U+604B(CJK UNIFIED IDEOGRAPH-604B)

U+604B
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-604B

Programming

C
\u604B
JavaScript
\u604B
Java
\u604B
Json
\u604B
Python
\u604B
Perl
\x{604B}
PHP
\x{604B}
Ruby
\u{604B}
Rust
\u{604B}
Go
\u604B

Web

CSS
\00604B
HtmlDecimal
恋
HtmlHexadecimal
恋
Url
%E6%81%8B

Code

MD5
f3cf795248c95ece20700208fd46c8c7
Sha1
3e119f29178db3eb1505c23f84e0b865aaf51a0b
Base64
5oGL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u604B';
console.log(char);  // Output: 恋

Java:

char c = '\u604B';
System.out.println(c);  // Output: 恋

JSON:

{"text": "\u604B"}  // Value: 恋

Python:

char = '\u604B'
print(char)  # Output: 恋

Perl:

my $char = "\x{604B}";
print $char;  # Output: 恋

PHP:

$char = "\x{604B}";
echo $char;  // Output: 恋

Ruby:

char = "\u{604B}"
puts char  # Output: 恋

Rust:

let c = '\u{604B}';
println!("{}", c);  // Output: 恋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00604B";  /* Display: 恋 */
}

HTML Decimal:

<p>HTML decimal: &#24651;</p>  <!-- Display: 恋 -->

HTML Hexadecimal:

<p>HTML hex: &#x604B;</p>  <!-- Display: 恋 -->

URL Encoding:

// 恋 URL encoding
https://unicodefinder.com/search.php?query=%E6%81%8B

Encodings

MD5:

f3cf795248c95ece20700208fd46c8c7

SHA1:

3e119f29178db3eb1505c23f84e0b865aaf51a0b

Base64:

5oGL