Unicode Finder

"愰" U+6130(CJK UNIFIED IDEOGRAPH-6130)

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

Programming

C
\u6130
JavaScript
\u6130
Java
\u6130
Json
\u6130
Python
\u6130
Perl
\x{6130}
PHP
\x{6130}
Ruby
\u{6130}
Rust
\u{6130}
Go
\u6130

Web

CSS
\006130
HtmlDecimal
愰
HtmlHexadecimal
愰
Url
%E6%84%B0

Code

MD5
2fd06dd21d79151e3a9e3f54f60aa77a
Sha1
e6f9f43294cf843d11c8006d735fad238ecfdf56
Base64
5oSw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6130';
console.log(char);  // Output: 愰

Java:

char c = '\u6130';
System.out.println(c);  // Output: 愰

JSON:

{"text": "\u6130"}  // Value: 愰

Python:

char = '\u6130'
print(char)  # Output: 愰

Perl:

my $char = "\x{6130}";
print $char;  # Output: 愰

PHP:

$char = "\x{6130}";
echo $char;  // Output: 愰

Ruby:

char = "\u{6130}"
puts char  # Output: 愰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006130";  /* Display: 愰 */
}

HTML Decimal:

<p>HTML decimal: &#24880;</p>  <!-- Display: 愰 -->

HTML Hexadecimal:

<p>HTML hex: &#x6130;</p>  <!-- Display: 愰 -->

URL Encoding:

// 愰 URL encoding
https://unicodefinder.com/search.php?query=%E6%84%B0

Encodings

MD5:

2fd06dd21d79151e3a9e3f54f60aa77a

SHA1:

e6f9f43294cf843d11c8006d735fad238ecfdf56

Base64:

5oSw