Unicode Finder

"甫" U+752B(CJK UNIFIED IDEOGRAPH-752B)

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

Programming

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

Web

CSS
\00752B
HtmlDecimal
甫
HtmlHexadecimal
甫
Url
%E7%94%AB

Code

MD5
90fd6543e8a10787a6a9bcf1cd4940c6
Sha1
1a413996437a5eb22c68e90ccf6ce46afe0f55c7
Base64
55Sr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u752B';
console.log(char);  // Output: 甫

Java:

char c = '\u752B';
System.out.println(c);  // Output: 甫

JSON:

{"text": "\u752B"}  // Value: 甫

Python:

char = '\u752B'
print(char)  # Output: 甫

Perl:

my $char = "\x{752B}";
print $char;  # Output: 甫

PHP:

$char = "\x{752B}";
echo $char;  // Output: 甫

Ruby:

char = "\u{752B}"
puts char  # Output: 甫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29995;</p>  <!-- Display: 甫 -->

HTML Hexadecimal:

<p>HTML hex: &#x752B;</p>  <!-- Display: 甫 -->

URL Encoding:

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

Encodings

MD5:

90fd6543e8a10787a6a9bcf1cd4940c6

SHA1:

1a413996437a5eb22c68e90ccf6ce46afe0f55c7

Base64:

55Sr