Unicode Finder

"徇" U+5F87(CJK UNIFIED IDEOGRAPH-5F87)

U+5F87
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5F87

Programming

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

Web

CSS
\005F87
HtmlDecimal
徇
HtmlHexadecimal
徇
Url
%E5%BE%87

Code

MD5
3303bc1823fd970345745e17d912b9e2
Sha1
4a03c325baf13a7ba473c12b51cb9609b127ede6
Base64
5b6H

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5F87';
console.log(char);  // Output: 徇

Java:

char c = '\u5F87';
System.out.println(c);  // Output: 徇

JSON:

{"text": "\u5F87"}  // Value: 徇

Python:

char = '\u5F87'
print(char)  # Output: 徇

Perl:

my $char = "\x{5F87}";
print $char;  # Output: 徇

PHP:

$char = "\x{5F87}";
echo $char;  // Output: 徇

Ruby:

char = "\u{5F87}"
puts char  # Output: 徇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24455;</p>  <!-- Display: 徇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F87;</p>  <!-- Display: 徇 -->

URL Encoding:

// 徇 URL encoding
https://unicodefinder.com/search.php?query=%E5%BE%87

Encodings

MD5:

3303bc1823fd970345745e17d912b9e2

SHA1:

4a03c325baf13a7ba473c12b51cb9609b127ede6

Base64:

5b6H