Unicode Finder

"弗" U+5F17(CJK UNIFIED IDEOGRAPH-5F17)

U+5F17
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5F17

Programming

C
\u5F17
JavaScript
\u5F17
Java
\u5F17
Json
\u5F17
Python
\u5F17
Perl
\x{5F17}
PHP
\x{5F17}
Ruby
\u{5F17}
Rust
\u{5F17}
Go
\u5F17

Web

CSS
\005F17
HtmlDecimal
弗
HtmlHexadecimal
弗
Url
%E5%BC%97

Code

MD5
48863f44c3dafe5776acbf2146af0270
Sha1
9a8ecfdb9fbbcc7663e21d201d935300d51ff767
Base64
5byX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5F17';
console.log(char);  // Output: 弗

Java:

char c = '\u5F17';
System.out.println(c);  // Output: 弗

JSON:

{"text": "\u5F17"}  // Value: 弗

Python:

char = '\u5F17'
print(char)  # Output: 弗

Perl:

my $char = "\x{5F17}";
print $char;  # Output: 弗

PHP:

$char = "\x{5F17}";
echo $char;  // Output: 弗

Ruby:

char = "\u{5F17}"
puts char  # Output: 弗

Rust:

let c = '\u{5F17}';
println!("{}", c);  // Output: 弗

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005F17";  /* Display: 弗 */
}

HTML Decimal:

<p>HTML decimal: &#24343;</p>  <!-- Display: 弗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F17;</p>  <!-- Display: 弗 -->

URL Encoding:

// 弗 URL encoding
https://unicodefinder.com/search.php?query=%E5%BC%97

Encodings

MD5:

48863f44c3dafe5776acbf2146af0270

SHA1:

9a8ecfdb9fbbcc7663e21d201d935300d51ff767

Base64:

5byX