Unicode Finder

"甯" U+752F(CJK UNIFIED IDEOGRAPH-752F)

U+752F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-752F

Programming

C
\u752F
JavaScript
\u752F
Java
\u752F
Json
\u752F
Python
\u752F
Perl
\x{752F}
PHP
\x{752F}
Ruby
\u{752F}
Rust
\u{752F}
Go
\u752F

Web

CSS
\00752F
HtmlDecimal
甯
HtmlHexadecimal
甯
Url
%E7%94%AF

Code

MD5
20b88f3733973107751ca631a657464e
Sha1
bc7536a611f23dffc5ac82912a02c612e57c5bd7
Base64
55Sv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u752F';
console.log(char);  // Output: 甯

Java:

char c = '\u752F';
System.out.println(c);  // Output: 甯

JSON:

{"text": "\u752F"}  // Value: 甯

Python:

char = '\u752F'
print(char)  # Output: 甯

Perl:

my $char = "\x{752F}";
print $char;  # Output: 甯

PHP:

$char = "\x{752F}";
echo $char;  // Output: 甯

Ruby:

char = "\u{752F}"
puts char  # Output: 甯

Rust:

let c = '\u{752F}';
println!("{}", c);  // Output: 甯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00752F";  /* Display: 甯 */
}

HTML Decimal:

<p>HTML decimal: &#29999;</p>  <!-- Display: 甯 -->

HTML Hexadecimal:

<p>HTML hex: &#x752F;</p>  <!-- Display: 甯 -->

URL Encoding:

// 甯 URL encoding
https://unicodefinder.com/search.php?query=%E7%94%AF

Encodings

MD5:

20b88f3733973107751ca631a657464e

SHA1:

bc7536a611f23dffc5ac82912a02c612e57c5bd7

Base64:

55Sv