Unicode Finder

"勘" U+52D8(CJK UNIFIED IDEOGRAPH-52D8)

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

Programming

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

Web

CSS
\0052D8
HtmlDecimal
勘
HtmlHexadecimal
勘
Url
%E5%8B%98

Code

MD5
c3cad54a50597806c7c72cb59ea92ad2
Sha1
3b7eefde9723986b11568c46c1c8eefa1f2bc7ed
Base64
5YuY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u52D8';
console.log(char);  // Output: 勘

Java:

char c = '\u52D8';
System.out.println(c);  // Output: 勘

JSON:

{"text": "\u52D8"}  // Value: 勘

Python:

char = '\u52D8'
print(char)  # Output: 勘

Perl:

my $char = "\x{52D8}";
print $char;  # Output: 勘

PHP:

$char = "\x{52D8}";
echo $char;  // Output: 勘

Ruby:

char = "\u{52D8}"
puts char  # Output: 勘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21208;</p>  <!-- Display: 勘 -->

HTML Hexadecimal:

<p>HTML hex: &#x52D8;</p>  <!-- Display: 勘 -->

URL Encoding:

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

Encodings

MD5:

c3cad54a50597806c7c72cb59ea92ad2

SHA1:

3b7eefde9723986b11568c46c1c8eefa1f2bc7ed

Base64:

5YuY