Unicode Finder

"鉕" U+9255(CJK UNIFIED IDEOGRAPH-9255)

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

Programming

C
\u9255
JavaScript
\u9255
Java
\u9255
Json
\u9255
Python
\u9255
Perl
\x{9255}
PHP
\x{9255}
Ruby
\u{9255}
Rust
\u{9255}
Go
\u9255

Web

CSS
\009255
HtmlDecimal
鉕
HtmlHexadecimal
鉕
Url
%E9%89%95

Code

MD5
6fbf6408f4c017a6df3ac6aa341abe55
Sha1
62c7c2cd0795b2c53ccaec5e9ec80babbc5e593f
Base64
6YmV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9255';
console.log(char);  // Output: 鉕

Java:

char c = '\u9255';
System.out.println(c);  // Output: 鉕

JSON:

{"text": "\u9255"}  // Value: 鉕

Python:

char = '\u9255'
print(char)  # Output: 鉕

Perl:

my $char = "\x{9255}";
print $char;  # Output: 鉕

PHP:

$char = "\x{9255}";
echo $char;  // Output: 鉕

Ruby:

char = "\u{9255}"
puts char  # Output: 鉕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009255";  /* Display: 鉕 */
}

HTML Decimal:

<p>HTML decimal: &#37461;</p>  <!-- Display: 鉕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9255;</p>  <!-- Display: 鉕 -->

URL Encoding:

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

Encodings

MD5:

6fbf6408f4c017a6df3ac6aa341abe55

SHA1:

62c7c2cd0795b2c53ccaec5e9ec80babbc5e593f

Base64:

6YmV