Unicode Finder

"但" U+4F46(CJK UNIFIED IDEOGRAPH-4F46)

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

Programming

C
\u4F46
JavaScript
\u4F46
Java
\u4F46
Json
\u4F46
Python
\u4F46
Perl
\x{4F46}
PHP
\x{4F46}
Ruby
\u{4F46}
Rust
\u{4F46}
Go
\u4F46

Web

CSS
\004F46
HtmlDecimal
但
HtmlHexadecimal
但
Url
%E4%BD%86

Code

MD5
fc8f10bc499e1a59b5f256dd7bfeb4d9
Sha1
2ef5469df50385be0d939bcdec68a69455b88277
Base64
5L2G

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u4F46';
console.log(char);  // Output: 但

Java:

char c = '\u4F46';
System.out.println(c);  // Output: 但

JSON:

{"text": "\u4F46"}  // Value: 但

Python:

char = '\u4F46'
print(char)  # Output: 但

Perl:

my $char = "\x{4F46}";
print $char;  # Output: 但

PHP:

$char = "\x{4F46}";
echo $char;  // Output: 但

Ruby:

char = "\u{4F46}"
puts char  # Output: 但

Rust:

let c = '\u{4F46}';
println!("{}", c);  // Output: 但

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004F46";  /* Display: 但 */
}

HTML Decimal:

<p>HTML decimal: &#20294;</p>  <!-- Display: 但 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F46;</p>  <!-- Display: 但 -->

URL Encoding:

// 但 URL encoding
https://unicodefinder.com/search.php?query=%E4%BD%86

Encodings

MD5:

fc8f10bc499e1a59b5f256dd7bfeb4d9

SHA1:

2ef5469df50385be0d939bcdec68a69455b88277

Base64:

5L2G