Unicode Finder

"錏" U+930F(CJK UNIFIED IDEOGRAPH-930F)

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

Programming

C
\u930F
JavaScript
\u930F
Java
\u930F
Json
\u930F
Python
\u930F
Perl
\x{930F}
PHP
\x{930F}
Ruby
\u{930F}
Rust
\u{930F}
Go
\u930F

Web

CSS
\00930F
HtmlDecimal
錏
HtmlHexadecimal
錏
Url
%E9%8C%8F

Code

MD5
6f229a22b69ae7f970e8bb3618e35731
Sha1
f981a337f6c13c08f4fb1ee9360706e8368728ab
Base64
6YyP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u930F';
console.log(char);  // Output: 錏

Java:

char c = '\u930F';
System.out.println(c);  // Output: 錏

JSON:

{"text": "\u930F"}  // Value: 錏

Python:

char = '\u930F'
print(char)  # Output: 錏

Perl:

my $char = "\x{930F}";
print $char;  # Output: 錏

PHP:

$char = "\x{930F}";
echo $char;  // Output: 錏

Ruby:

char = "\u{930F}"
puts char  # Output: 錏

Rust:

let c = '\u{930F}';
println!("{}", c);  // Output: 錏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00930F";  /* Display: 錏 */
}

HTML Decimal:

<p>HTML decimal: &#37647;</p>  <!-- Display: 錏 -->

HTML Hexadecimal:

<p>HTML hex: &#x930F;</p>  <!-- Display: 錏 -->

URL Encoding:

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

Encodings

MD5:

6f229a22b69ae7f970e8bb3618e35731

SHA1:

f981a337f6c13c08f4fb1ee9360706e8368728ab

Base64:

6YyP