Unicode Finder

"镅" U+9545(CJK UNIFIED IDEOGRAPH-9545)

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

Programming

C
\u9545
JavaScript
\u9545
Java
\u9545
Json
\u9545
Python
\u9545
Perl
\x{9545}
PHP
\x{9545}
Ruby
\u{9545}
Rust
\u{9545}
Go
\u9545

Web

CSS
\009545
HtmlDecimal
镅
HtmlHexadecimal
镅
Url
%E9%95%85

Code

MD5
f12c870f9177b540b86150fbb8bf29e7
Sha1
c6bc85f94db81aec9873fdd30d8a6493e82b955b
Base64
6ZWF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9545';
console.log(char);  // Output: 镅

Java:

char c = '\u9545';
System.out.println(c);  // Output: 镅

JSON:

{"text": "\u9545"}  // Value: 镅

Python:

char = '\u9545'
print(char)  # Output: 镅

Perl:

my $char = "\x{9545}";
print $char;  # Output: 镅

PHP:

$char = "\x{9545}";
echo $char;  // Output: 镅

Ruby:

char = "\u{9545}"
puts char  # Output: 镅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009545";  /* Display: 镅 */
}

HTML Decimal:

<p>HTML decimal: &#38213;</p>  <!-- Display: 镅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9545;</p>  <!-- Display: 镅 -->

URL Encoding:

// 镅 URL encoding
https://unicodefinder.com/search.php?query=%E9%95%85

Encodings

MD5:

f12c870f9177b540b86150fbb8bf29e7

SHA1:

c6bc85f94db81aec9873fdd30d8a6493e82b955b

Base64:

6ZWF