Unicode Finder

"帖" U+5E16(CJK UNIFIED IDEOGRAPH-5E16)

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

Programming

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

Web

CSS
\005E16
HtmlDecimal
帖
HtmlHexadecimal
帖
Url
%E5%B8%96

Code

MD5
974f98c1a1e7793d93486613e0002303
Sha1
e60679c91e5631ccb55ac9fc2dd6ce570dde5ee3
Base64
5biW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E16';
console.log(char);  // Output: 帖

Java:

char c = '\u5E16';
System.out.println(c);  // Output: 帖

JSON:

{"text": "\u5E16"}  // Value: 帖

Python:

char = '\u5E16'
print(char)  # Output: 帖

Perl:

my $char = "\x{5E16}";
print $char;  # Output: 帖

PHP:

$char = "\x{5E16}";
echo $char;  // Output: 帖

Ruby:

char = "\u{5E16}"
puts char  # Output: 帖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24086;</p>  <!-- Display: 帖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E16;</p>  <!-- Display: 帖 -->

URL Encoding:

// 帖 URL encoding
https://unicodefinder.com/search.php?query=%E5%B8%96

Encodings

MD5:

974f98c1a1e7793d93486613e0002303

SHA1:

e60679c91e5631ccb55ac9fc2dd6ce570dde5ee3

Base64:

5biW