Unicode Finder

"钒" U+9492(CJK UNIFIED IDEOGRAPH-9492)

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

Programming

C
\u9492
JavaScript
\u9492
Java
\u9492
Json
\u9492
Python
\u9492
Perl
\x{9492}
PHP
\x{9492}
Ruby
\u{9492}
Rust
\u{9492}
Go
\u9492

Web

CSS
\009492
HtmlDecimal
钒
HtmlHexadecimal
钒
Url
%E9%92%92

Code

MD5
a3e2640d51595351da54c62b44413d43
Sha1
dc9b70bc5d8cdf94fa3dfc16f7eda4911468e462
Base64
6ZKS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9492';
console.log(char);  // Output: 钒

Java:

char c = '\u9492';
System.out.println(c);  // Output: 钒

JSON:

{"text": "\u9492"}  // Value: 钒

Python:

char = '\u9492'
print(char)  # Output: 钒

Perl:

my $char = "\x{9492}";
print $char;  # Output: 钒

PHP:

$char = "\x{9492}";
echo $char;  // Output: 钒

Ruby:

char = "\u{9492}"
puts char  # Output: 钒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009492";  /* Display: 钒 */
}

HTML Decimal:

<p>HTML decimal: &#38034;</p>  <!-- Display: 钒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9492;</p>  <!-- Display: 钒 -->

URL Encoding:

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

Encodings

MD5:

a3e2640d51595351da54c62b44413d43

SHA1:

dc9b70bc5d8cdf94fa3dfc16f7eda4911468e462

Base64:

6ZKS