Unicode Finder

"睏" U+774F(CJK UNIFIED IDEOGRAPH-774F)

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

Programming

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

Web

CSS
\00774F
HtmlDecimal
睏
HtmlHexadecimal
睏
Url
%E7%9D%8F

Code

MD5
d2927a25c3c16eb6db0dce7bd9edccf1
Sha1
b04385408ae6d92870edaff92a83e15d5cc31df7
Base64
552P

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u774F';
console.log(char);  // Output: 睏

Java:

char c = '\u774F';
System.out.println(c);  // Output: 睏

JSON:

{"text": "\u774F"}  // Value: 睏

Python:

char = '\u774F'
print(char)  # Output: 睏

Perl:

my $char = "\x{774F}";
print $char;  # Output: 睏

PHP:

$char = "\x{774F}";
echo $char;  // Output: 睏

Ruby:

char = "\u{774F}"
puts char  # Output: 睏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30543;</p>  <!-- Display: 睏 -->

HTML Hexadecimal:

<p>HTML hex: &#x774F;</p>  <!-- Display: 睏 -->

URL Encoding:

// 睏 URL encoding
https://unicodefinder.com/search.php?query=%E7%9D%8F

Encodings

MD5:

d2927a25c3c16eb6db0dce7bd9edccf1

SHA1:

b04385408ae6d92870edaff92a83e15d5cc31df7

Base64:

552P