Unicode Finder

"勿" U+52FF(CJK UNIFIED IDEOGRAPH-52FF)

U+52FF
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-52FF

Programming

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

Web

CSS
\0052FF
HtmlDecimal
勿
HtmlHexadecimal
勿
Url
%E5%8B%BF

Code

MD5
67f708ac1dc3312a5ac28f5516b3d060
Sha1
c69295b63c1e42257da3096dfc9d21920c09ead0
Base64
5Yu/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u52FF';
console.log(char);  // Output: 勿

Java:

char c = '\u52FF';
System.out.println(c);  // Output: 勿

JSON:

{"text": "\u52FF"}  // Value: 勿

Python:

char = '\u52FF'
print(char)  # Output: 勿

Perl:

my $char = "\x{52FF}";
print $char;  # Output: 勿

PHP:

$char = "\x{52FF}";
echo $char;  // Output: 勿

Ruby:

char = "\u{52FF}"
puts char  # Output: 勿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21247;</p>  <!-- Display: 勿 -->

HTML Hexadecimal:

<p>HTML hex: &#x52FF;</p>  <!-- Display: 勿 -->

URL Encoding:

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

Encodings

MD5:

67f708ac1dc3312a5ac28f5516b3d060

SHA1:

c69295b63c1e42257da3096dfc9d21920c09ead0

Base64:

5Yu/