Unicode Finder

"勉" U+52C9(CJK UNIFIED IDEOGRAPH-52C9)

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

Programming

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

Web

CSS
\0052C9
HtmlDecimal
勉
HtmlHexadecimal
勉
Url
%E5%8B%89

Code

MD5
94d1681ffdb1721cd8f2e747abacb6df
Sha1
cda7049e4cc15d7bc68614d7b547a5d4e943c547
Base64
5YuJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u52C9';
console.log(char);  // Output: 勉

Java:

char c = '\u52C9';
System.out.println(c);  // Output: 勉

JSON:

{"text": "\u52C9"}  // Value: 勉

Python:

char = '\u52C9'
print(char)  # Output: 勉

Perl:

my $char = "\x{52C9}";
print $char;  # Output: 勉

PHP:

$char = "\x{52C9}";
echo $char;  // Output: 勉

Ruby:

char = "\u{52C9}"
puts char  # Output: 勉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21193;</p>  <!-- Display: 勉 -->

HTML Hexadecimal:

<p>HTML hex: &#x52C9;</p>  <!-- Display: 勉 -->

URL Encoding:

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

Encodings

MD5:

94d1681ffdb1721cd8f2e747abacb6df

SHA1:

cda7049e4cc15d7bc68614d7b547a5d4e943c547

Base64:

5YuJ