Unicode Finder

"愈" U+6108(CJK UNIFIED IDEOGRAPH-6108)

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

Programming

C
\u6108
JavaScript
\u6108
Java
\u6108
Json
\u6108
Python
\u6108
Perl
\x{6108}
PHP
\x{6108}
Ruby
\u{6108}
Rust
\u{6108}
Go
\u6108

Web

CSS
\006108
HtmlDecimal
愈
HtmlHexadecimal
愈
Url
%E6%84%88

Code

MD5
7d542b93b146a7c6201af2a886d33de5
Sha1
f53efe28245dc1dcec346f2977a4849a36e3f5a8
Base64
5oSI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6108';
console.log(char);  // Output: 愈

Java:

char c = '\u6108';
System.out.println(c);  // Output: 愈

JSON:

{"text": "\u6108"}  // Value: 愈

Python:

char = '\u6108'
print(char)  # Output: 愈

Perl:

my $char = "\x{6108}";
print $char;  # Output: 愈

PHP:

$char = "\x{6108}";
echo $char;  // Output: 愈

Ruby:

char = "\u{6108}"
puts char  # Output: 愈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006108";  /* Display: 愈 */
}

HTML Decimal:

<p>HTML decimal: &#24840;</p>  <!-- Display: 愈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6108;</p>  <!-- Display: 愈 -->

URL Encoding:

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

Encodings

MD5:

7d542b93b146a7c6201af2a886d33de5

SHA1:

f53efe28245dc1dcec346f2977a4849a36e3f5a8

Base64:

5oSI