Unicode Finder

"钎" U+948E(CJK UNIFIED IDEOGRAPH-948E)

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

Programming

C
\u948E
JavaScript
\u948E
Java
\u948E
Json
\u948E
Python
\u948E
Perl
\x{948E}
PHP
\x{948E}
Ruby
\u{948E}
Rust
\u{948E}
Go
\u948E

Web

CSS
\00948E
HtmlDecimal
钎
HtmlHexadecimal
钎
Url
%E9%92%8E

Code

MD5
7044aaf2f7ad5bde3f8a6138b80aee3b
Sha1
abf3a989d2942e33f600173d64cc3d1b10dacc03
Base64
6ZKO

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u948E';
console.log(char);  // Output: 钎

Java:

char c = '\u948E';
System.out.println(c);  // Output: 钎

JSON:

{"text": "\u948E"}  // Value: 钎

Python:

char = '\u948E'
print(char)  # Output: 钎

Perl:

my $char = "\x{948E}";
print $char;  # Output: 钎

PHP:

$char = "\x{948E}";
echo $char;  // Output: 钎

Ruby:

char = "\u{948E}"
puts char  # Output: 钎

Rust:

let c = '\u{948E}';
println!("{}", c);  // Output: 钎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00948E";  /* Display: 钎 */
}

HTML Decimal:

<p>HTML decimal: &#38030;</p>  <!-- Display: 钎 -->

HTML Hexadecimal:

<p>HTML hex: &#x948E;</p>  <!-- Display: 钎 -->

URL Encoding:

// 钎 URL encoding
https://unicodefinder.com/search.php?query=%E9%92%8E

Encodings

MD5:

7044aaf2f7ad5bde3f8a6138b80aee3b

SHA1:

abf3a989d2942e33f600173d64cc3d1b10dacc03

Base64:

6ZKO