Unicode Finder

"甬" U+752C(CJK UNIFIED IDEOGRAPH-752C)

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

Programming

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

Web

CSS
\00752C
HtmlDecimal
甬
HtmlHexadecimal
甬
Url
%E7%94%AC

Code

MD5
e49c2f6e58b0298f2ab30daa044fb44a
Sha1
b9857ba559d897687841ccc40aad198bec851231
Base64
55Ss

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u752C';
console.log(char);  // Output: 甬

Java:

char c = '\u752C';
System.out.println(c);  // Output: 甬

JSON:

{"text": "\u752C"}  // Value: 甬

Python:

char = '\u752C'
print(char)  # Output: 甬

Perl:

my $char = "\x{752C}";
print $char;  # Output: 甬

PHP:

$char = "\x{752C}";
echo $char;  // Output: 甬

Ruby:

char = "\u{752C}"
puts char  # Output: 甬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29996;</p>  <!-- Display: 甬 -->

HTML Hexadecimal:

<p>HTML hex: &#x752C;</p>  <!-- Display: 甬 -->

URL Encoding:

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

Encodings

MD5:

e49c2f6e58b0298f2ab30daa044fb44a

SHA1:

b9857ba559d897687841ccc40aad198bec851231

Base64:

55Ss