Unicode Finder

"恬" U+606C(CJK UNIFIED IDEOGRAPH-606C)

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

Programming

C
\u606C
JavaScript
\u606C
Java
\u606C
Json
\u606C
Python
\u606C
Perl
\x{606C}
PHP
\x{606C}
Ruby
\u{606C}
Rust
\u{606C}
Go
\u606C

Web

CSS
\00606C
HtmlDecimal
恬
HtmlHexadecimal
恬
Url
%E6%81%AC

Code

MD5
82ab33ec9baf2d95da46c6afc4f2b02d
Sha1
7300c37b38cb091938896b34c80620583f82760c
Base64
5oGs

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u606C';
console.log(char);  // Output: 恬

Java:

char c = '\u606C';
System.out.println(c);  // Output: 恬

JSON:

{"text": "\u606C"}  // Value: 恬

Python:

char = '\u606C'
print(char)  # Output: 恬

Perl:

my $char = "\x{606C}";
print $char;  # Output: 恬

PHP:

$char = "\x{606C}";
echo $char;  // Output: 恬

Ruby:

char = "\u{606C}"
puts char  # Output: 恬

Rust:

let c = '\u{606C}';
println!("{}", c);  // Output: 恬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00606C";  /* Display: 恬 */
}

HTML Decimal:

<p>HTML decimal: &#24684;</p>  <!-- Display: 恬 -->

HTML Hexadecimal:

<p>HTML hex: &#x606C;</p>  <!-- Display: 恬 -->

URL Encoding:

// 恬 URL encoding
https://unicodefinder.com/search.php?query=%E6%81%AC

Encodings

MD5:

82ab33ec9baf2d95da46c6afc4f2b02d

SHA1:

7300c37b38cb091938896b34c80620583f82760c

Base64:

5oGs