Unicode Finder

"倏" U+500F(CJK UNIFIED IDEOGRAPH-500F)

U+500F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-500F

Programming

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

Web

CSS
\00500F
HtmlDecimal
倏
HtmlHexadecimal
倏
Url
%E5%80%8F

Code

MD5
15c55286bd08e994783ba33d5c54f970
Sha1
daac118ce40855ee52c0d27bdc2dd1553a1118a2
Base64
5YCP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u500F';
console.log(char);  // Output: 倏

Java:

char c = '\u500F';
System.out.println(c);  // Output: 倏

JSON:

{"text": "\u500F"}  // Value: 倏

Python:

char = '\u500F'
print(char)  # Output: 倏

Perl:

my $char = "\x{500F}";
print $char;  # Output: 倏

PHP:

$char = "\x{500F}";
echo $char;  // Output: 倏

Ruby:

char = "\u{500F}"
puts char  # Output: 倏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20495;</p>  <!-- Display: 倏 -->

HTML Hexadecimal:

<p>HTML hex: &#x500F;</p>  <!-- Display: 倏 -->

URL Encoding:

// 倏 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%8F

Encodings

MD5:

15c55286bd08e994783ba33d5c54f970

SHA1:

daac118ce40855ee52c0d27bdc2dd1553a1118a2

Base64:

5YCP