Unicode Finder

"慨" U+6168(CJK UNIFIED IDEOGRAPH-6168)

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

Programming

C
\u6168
JavaScript
\u6168
Java
\u6168
Json
\u6168
Python
\u6168
Perl
\x{6168}
PHP
\x{6168}
Ruby
\u{6168}
Rust
\u{6168}
Go
\u6168

Web

CSS
\006168
HtmlDecimal
慨
HtmlHexadecimal
慨
Url
%E6%85%A8

Code

MD5
ef88d5c7c0d034a05f8d404278c4670c
Sha1
8c0522b5512615a22a663c531f17603e96571d50
Base64
5oWo

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6168';
console.log(char);  // Output: 慨

Java:

char c = '\u6168';
System.out.println(c);  // Output: 慨

JSON:

{"text": "\u6168"}  // Value: 慨

Python:

char = '\u6168'
print(char)  # Output: 慨

Perl:

my $char = "\x{6168}";
print $char;  # Output: 慨

PHP:

$char = "\x{6168}";
echo $char;  // Output: 慨

Ruby:

char = "\u{6168}"
puts char  # Output: 慨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006168";  /* Display: 慨 */
}

HTML Decimal:

<p>HTML decimal: &#24936;</p>  <!-- Display: 慨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6168;</p>  <!-- Display: 慨 -->

URL Encoding:

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

Encodings

MD5:

ef88d5c7c0d034a05f8d404278c4670c

SHA1:

8c0522b5512615a22a663c531f17603e96571d50

Base64:

5oWo