Unicode Finder

"甒" U+7512(CJK UNIFIED IDEOGRAPH-7512)

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

Programming

C
\u7512
JavaScript
\u7512
Java
\u7512
Json
\u7512
Python
\u7512
Perl
\x{7512}
PHP
\x{7512}
Ruby
\u{7512}
Rust
\u{7512}
Go
\u7512

Web

CSS
\007512
HtmlDecimal
甒
HtmlHexadecimal
甒
Url
%E7%94%92

Code

MD5
ef20c14c9b72949c82926e47035d01fb
Sha1
a13ea0f0457a019f084c9573c000e6cd72852995
Base64
55SS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7512';
console.log(char);  // Output: 甒

Java:

char c = '\u7512';
System.out.println(c);  // Output: 甒

JSON:

{"text": "\u7512"}  // Value: 甒

Python:

char = '\u7512'
print(char)  # Output: 甒

Perl:

my $char = "\x{7512}";
print $char;  # Output: 甒

PHP:

$char = "\x{7512}";
echo $char;  // Output: 甒

Ruby:

char = "\u{7512}"
puts char  # Output: 甒

Rust:

let c = '\u{7512}';
println!("{}", c);  // Output: 甒

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007512";  /* Display: 甒 */
}

HTML Decimal:

<p>HTML decimal: &#29970;</p>  <!-- Display: 甒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7512;</p>  <!-- Display: 甒 -->

URL Encoding:

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

Encodings

MD5:

ef20c14c9b72949c82926e47035d01fb

SHA1:

a13ea0f0457a019f084c9573c000e6cd72852995

Base64:

55SS