Unicode Finder

"鉱" U+9271(CJK UNIFIED IDEOGRAPH-9271)

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

Programming

C
\u9271
JavaScript
\u9271
Java
\u9271
Json
\u9271
Python
\u9271
Perl
\x{9271}
PHP
\x{9271}
Ruby
\u{9271}
Rust
\u{9271}
Go
\u9271

Web

CSS
\009271
HtmlDecimal
鉱
HtmlHexadecimal
鉱
Url
%E9%89%B1

Code

MD5
82778d16c11946d65f6458bdafb14684
Sha1
57d0ba11fba630130e9d73ecc6facff011a02398
Base64
6Ymx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9271';
console.log(char);  // Output: 鉱

Java:

char c = '\u9271';
System.out.println(c);  // Output: 鉱

JSON:

{"text": "\u9271"}  // Value: 鉱

Python:

char = '\u9271'
print(char)  # Output: 鉱

Perl:

my $char = "\x{9271}";
print $char;  # Output: 鉱

PHP:

$char = "\x{9271}";
echo $char;  // Output: 鉱

Ruby:

char = "\u{9271}"
puts char  # Output: 鉱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009271";  /* Display: 鉱 */
}

HTML Decimal:

<p>HTML decimal: &#37489;</p>  <!-- Display: 鉱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9271;</p>  <!-- Display: 鉱 -->

URL Encoding:

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

Encodings

MD5:

82778d16c11946d65f6458bdafb14684

SHA1:

57d0ba11fba630130e9d73ecc6facff011a02398

Base64:

6Ymx