Unicode Finder

"忭" U+5FED(CJK UNIFIED IDEOGRAPH-5FED)

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

Programming

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

Web

CSS
\005FED
HtmlDecimal
忭
HtmlHexadecimal
忭
Url
%E5%BF%AD

Code

MD5
fcff59219f75f04f8563cb0ac0a4a3f0
Sha1
76457a25bf29dac63801b08f769aa22741725b9e
Base64
5b+t

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5FED';
console.log(char);  // Output: 忭

Java:

char c = '\u5FED';
System.out.println(c);  // Output: 忭

JSON:

{"text": "\u5FED"}  // Value: 忭

Python:

char = '\u5FED'
print(char)  # Output: 忭

Perl:

my $char = "\x{5FED}";
print $char;  # Output: 忭

PHP:

$char = "\x{5FED}";
echo $char;  // Output: 忭

Ruby:

char = "\u{5FED}"
puts char  # Output: 忭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24557;</p>  <!-- Display: 忭 -->

HTML Hexadecimal:

<p>HTML hex: &#x5FED;</p>  <!-- Display: 忭 -->

URL Encoding:

// 忭 URL encoding
https://unicodefinder.com/search.php?query=%E5%BF%AD

Encodings

MD5:

fcff59219f75f04f8563cb0ac0a4a3f0

SHA1:

76457a25bf29dac63801b08f769aa22741725b9e

Base64:

5b+t