Unicode Finder

"感" U+611F(CJK UNIFIED IDEOGRAPH-611F)

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

Programming

C
\u611F
JavaScript
\u611F
Java
\u611F
Json
\u611F
Python
\u611F
Perl
\x{611F}
PHP
\x{611F}
Ruby
\u{611F}
Rust
\u{611F}
Go
\u611F

Web

CSS
\00611F
HtmlDecimal
感
HtmlHexadecimal
感
Url
%E6%84%9F

Code

MD5
ef538fc3e75474507fa7e532f01d5a31
Sha1
189e4cb14073a2fb717aa11408379d9c2450dc86
Base64
5oSf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u611F';
console.log(char);  // Output: 感

Java:

char c = '\u611F';
System.out.println(c);  // Output: 感

JSON:

{"text": "\u611F"}  // Value: 感

Python:

char = '\u611F'
print(char)  # Output: 感

Perl:

my $char = "\x{611F}";
print $char;  # Output: 感

PHP:

$char = "\x{611F}";
echo $char;  // Output: 感

Ruby:

char = "\u{611F}"
puts char  # Output: 感

Rust:

let c = '\u{611F}';
println!("{}", c);  // Output: 感

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00611F";  /* Display: 感 */
}

HTML Decimal:

<p>HTML decimal: &#24863;</p>  <!-- Display: 感 -->

HTML Hexadecimal:

<p>HTML hex: &#x611F;</p>  <!-- Display: 感 -->

URL Encoding:

// 感 URL encoding
https://unicodefinder.com/search.php?query=%E6%84%9F

Encodings

MD5:

ef538fc3e75474507fa7e532f01d5a31

SHA1:

189e4cb14073a2fb717aa11408379d9c2450dc86

Base64:

5oSf