Unicode Finder

"帏" U+5E0F(CJK UNIFIED IDEOGRAPH-5E0F)

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

Programming

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

Web

CSS
\005E0F
HtmlDecimal
帏
HtmlHexadecimal
帏
Url
%E5%B8%8F

Code

MD5
622da6c2960dac7cb79290881b83e548
Sha1
07abc00b95ace0f9cb00f70979b247d53f80d0d0
Base64
5biP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E0F';
console.log(char);  // Output: 帏

Java:

char c = '\u5E0F';
System.out.println(c);  // Output: 帏

JSON:

{"text": "\u5E0F"}  // Value: 帏

Python:

char = '\u5E0F'
print(char)  # Output: 帏

Perl:

my $char = "\x{5E0F}";
print $char;  # Output: 帏

PHP:

$char = "\x{5E0F}";
echo $char;  // Output: 帏

Ruby:

char = "\u{5E0F}"
puts char  # Output: 帏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24079;</p>  <!-- Display: 帏 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E0F;</p>  <!-- Display: 帏 -->

URL Encoding:

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

Encodings

MD5:

622da6c2960dac7cb79290881b83e548

SHA1:

07abc00b95ace0f9cb00f70979b247d53f80d0d0

Base64:

5biP