Unicode Finder

"勖" U+52D6(CJK UNIFIED IDEOGRAPH-52D6)

U+52D6
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-52D6

Programming

C
\u52D6
JavaScript
\u52D6
Java
\u52D6
Json
\u52D6
Python
\u52D6
Perl
\x{52D6}
PHP
\x{52D6}
Ruby
\u{52D6}
Rust
\u{52D6}
Go
\u52D6

Web

CSS
\0052D6
HtmlDecimal
勖
HtmlHexadecimal
勖
Url
%E5%8B%96

Code

MD5
77968a0ee30eb5ae94a02e005696e5fa
Sha1
c7c5fa6b3aba6a12317ebee162756a23fe08290d
Base64
5YuW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u52D6';
console.log(char);  // Output: 勖

Java:

char c = '\u52D6';
System.out.println(c);  // Output: 勖

JSON:

{"text": "\u52D6"}  // Value: 勖

Python:

char = '\u52D6'
print(char)  # Output: 勖

Perl:

my $char = "\x{52D6}";
print $char;  # Output: 勖

PHP:

$char = "\x{52D6}";
echo $char;  // Output: 勖

Ruby:

char = "\u{52D6}"
puts char  # Output: 勖

Rust:

let c = '\u{52D6}';
println!("{}", c);  // Output: 勖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0052D6";  /* Display: 勖 */
}

HTML Decimal:

<p>HTML decimal: &#21206;</p>  <!-- Display: 勖 -->

HTML Hexadecimal:

<p>HTML hex: &#x52D6;</p>  <!-- Display: 勖 -->

URL Encoding:

// 勖 URL encoding
https://unicodefinder.com/search.php?query=%E5%8B%96

Encodings

MD5:

77968a0ee30eb5ae94a02e005696e5fa

SHA1:

c7c5fa6b3aba6a12317ebee162756a23fe08290d

Base64:

5YuW