Unicode Finder

"钙" U+9499(CJK UNIFIED IDEOGRAPH-9499)

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

Programming

C
\u9499
JavaScript
\u9499
Java
\u9499
Json
\u9499
Python
\u9499
Perl
\x{9499}
PHP
\x{9499}
Ruby
\u{9499}
Rust
\u{9499}
Go
\u9499

Web

CSS
\009499
HtmlDecimal
钙
HtmlHexadecimal
钙
Url
%E9%92%99

Code

MD5
9d003a8cc558e022252793c29378e7f1
Sha1
f0c928a66342f3d42d8b23a8d06a64c428ee3829
Base64
6ZKZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9499';
console.log(char);  // Output: 钙

Java:

char c = '\u9499';
System.out.println(c);  // Output: 钙

JSON:

{"text": "\u9499"}  // Value: 钙

Python:

char = '\u9499'
print(char)  # Output: 钙

Perl:

my $char = "\x{9499}";
print $char;  # Output: 钙

PHP:

$char = "\x{9499}";
echo $char;  // Output: 钙

Ruby:

char = "\u{9499}"
puts char  # Output: 钙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009499";  /* Display: 钙 */
}

HTML Decimal:

<p>HTML decimal: &#38041;</p>  <!-- Display: 钙 -->

HTML Hexadecimal:

<p>HTML hex: &#x9499;</p>  <!-- Display: 钙 -->

URL Encoding:

// 钙 URL encoding
https://unicodefinder.com/search.php?query=%E9%92%99

Encodings

MD5:

9d003a8cc558e022252793c29378e7f1

SHA1:

f0c928a66342f3d42d8b23a8d06a64c428ee3829

Base64:

6ZKZ