Unicode Finder

"錕" U+9315(CJK UNIFIED IDEOGRAPH-9315)

U+9315
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9315

Programming

C
\u9315
JavaScript
\u9315
Java
\u9315
Json
\u9315
Python
\u9315
Perl
\x{9315}
PHP
\x{9315}
Ruby
\u{9315}
Rust
\u{9315}
Go
\u9315

Web

CSS
\009315
HtmlDecimal
錕
HtmlHexadecimal
錕
Url
%E9%8C%95

Code

MD5
ff1d2d50f8d927a101677ddf9d09d1a8
Sha1
b41dc2efbd4c08998021ef8e05a44ba4ac183eba
Base64
6YyV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9315';
console.log(char);  // Output: 錕

Java:

char c = '\u9315';
System.out.println(c);  // Output: 錕

JSON:

{"text": "\u9315"}  // Value: 錕

Python:

char = '\u9315'
print(char)  # Output: 錕

Perl:

my $char = "\x{9315}";
print $char;  # Output: 錕

PHP:

$char = "\x{9315}";
echo $char;  // Output: 錕

Ruby:

char = "\u{9315}"
puts char  # Output: 錕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009315";  /* Display: 錕 */
}

HTML Decimal:

<p>HTML decimal: &#37653;</p>  <!-- Display: 錕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9315;</p>  <!-- Display: 錕 -->

URL Encoding:

// 錕 URL encoding
https://unicodefinder.com/search.php?query=%E9%8C%95

Encodings

MD5:

ff1d2d50f8d927a101677ddf9d09d1a8

SHA1:

b41dc2efbd4c08998021ef8e05a44ba4ac183eba

Base64:

6YyV