Unicode Finder

"勇" U+52C7(CJK UNIFIED IDEOGRAPH-52C7)

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

Programming

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

Web

CSS
\0052C7
HtmlDecimal
勇
HtmlHexadecimal
勇
Url
%E5%8B%87

Code

MD5
de046142418e213db4d1080ef0be8101
Sha1
e0601a5b57857ede99c85462bfc284904d6a2f68
Base64
5YuH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u52C7';
console.log(char);  // Output: 勇

Java:

char c = '\u52C7';
System.out.println(c);  // Output: 勇

JSON:

{"text": "\u52C7"}  // Value: 勇

Python:

char = '\u52C7'
print(char)  # Output: 勇

Perl:

my $char = "\x{52C7}";
print $char;  # Output: 勇

PHP:

$char = "\x{52C7}";
echo $char;  // Output: 勇

Ruby:

char = "\u{52C7}"
puts char  # Output: 勇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21191;</p>  <!-- Display: 勇 -->

HTML Hexadecimal:

<p>HTML hex: &#x52C7;</p>  <!-- Display: 勇 -->

URL Encoding:

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

Encodings

MD5:

de046142418e213db4d1080ef0be8101

SHA1:

e0601a5b57857ede99c85462bfc284904d6a2f68

Base64:

5YuH