Unicode Finder

"忝" U+5FDD(CJK UNIFIED IDEOGRAPH-5FDD)

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

Programming

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

Web

CSS
\005FDD
HtmlDecimal
忝
HtmlHexadecimal
忝
Url
%E5%BF%9D

Code

MD5
30c5ef50b5c99bc2f75af5fe5317b9a3
Sha1
df98954e9a820b3f09036249701bed425f423f32
Base64
5b+d

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5FDD';
console.log(char);  // Output: 忝

Java:

char c = '\u5FDD';
System.out.println(c);  // Output: 忝

JSON:

{"text": "\u5FDD"}  // Value: 忝

Python:

char = '\u5FDD'
print(char)  # Output: 忝

Perl:

my $char = "\x{5FDD}";
print $char;  # Output: 忝

PHP:

$char = "\x{5FDD}";
echo $char;  // Output: 忝

Ruby:

char = "\u{5FDD}"
puts char  # Output: 忝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24541;</p>  <!-- Display: 忝 -->

HTML Hexadecimal:

<p>HTML hex: &#x5FDD;</p>  <!-- Display: 忝 -->

URL Encoding:

// 忝 URL encoding
https://unicodefinder.com/search.php?query=%E5%BF%9D

Encodings

MD5:

30c5ef50b5c99bc2f75af5fe5317b9a3

SHA1:

df98954e9a820b3f09036249701bed425f423f32

Base64:

5b+d