Unicode Finder

"慧" U+6167(CJK UNIFIED IDEOGRAPH-6167)

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

Programming

C
\u6167
JavaScript
\u6167
Java
\u6167
Json
\u6167
Python
\u6167
Perl
\x{6167}
PHP
\x{6167}
Ruby
\u{6167}
Rust
\u{6167}
Go
\u6167

Web

CSS
\006167
HtmlDecimal
慧
HtmlHexadecimal
慧
Url
%E6%85%A7

Code

MD5
4cf0467954fd4d52586a1bbaee74f4a2
Sha1
b7611899b56dde675f3e7b8453e563ac0d2d463f
Base64
5oWn

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6167';
console.log(char);  // Output: 慧

Java:

char c = '\u6167';
System.out.println(c);  // Output: 慧

JSON:

{"text": "\u6167"}  // Value: 慧

Python:

char = '\u6167'
print(char)  # Output: 慧

Perl:

my $char = "\x{6167}";
print $char;  # Output: 慧

PHP:

$char = "\x{6167}";
echo $char;  // Output: 慧

Ruby:

char = "\u{6167}"
puts char  # Output: 慧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006167";  /* Display: 慧 */
}

HTML Decimal:

<p>HTML decimal: &#24935;</p>  <!-- Display: 慧 -->

HTML Hexadecimal:

<p>HTML hex: &#x6167;</p>  <!-- Display: 慧 -->

URL Encoding:

// 慧 URL encoding
https://unicodefinder.com/search.php?query=%E6%85%A7

Encodings

MD5:

4cf0467954fd4d52586a1bbaee74f4a2

SHA1:

b7611899b56dde675f3e7b8453e563ac0d2d463f

Base64:

5oWn