Unicode Finder

"鉉" U+9249(CJK UNIFIED IDEOGRAPH-9249)

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

Programming

C
\u9249
JavaScript
\u9249
Java
\u9249
Json
\u9249
Python
\u9249
Perl
\x{9249}
PHP
\x{9249}
Ruby
\u{9249}
Rust
\u{9249}
Go
\u9249

Web

CSS
\009249
HtmlDecimal
鉉
HtmlHexadecimal
鉉
Url
%E9%89%89

Code

MD5
87c530d5dca840c3bf2aa49bdcc119be
Sha1
da9f1f568412118f112e8ff4dacf81e80f661cc0
Base64
6YmJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9249';
console.log(char);  // Output: 鉉

Java:

char c = '\u9249';
System.out.println(c);  // Output: 鉉

JSON:

{"text": "\u9249"}  // Value: 鉉

Python:

char = '\u9249'
print(char)  # Output: 鉉

Perl:

my $char = "\x{9249}";
print $char;  # Output: 鉉

PHP:

$char = "\x{9249}";
echo $char;  // Output: 鉉

Ruby:

char = "\u{9249}"
puts char  # Output: 鉉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009249";  /* Display: 鉉 */
}

HTML Decimal:

<p>HTML decimal: &#37449;</p>  <!-- Display: 鉉 -->

HTML Hexadecimal:

<p>HTML hex: &#x9249;</p>  <!-- Display: 鉉 -->

URL Encoding:

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

Encodings

MD5:

87c530d5dca840c3bf2aa49bdcc119be

SHA1:

da9f1f568412118f112e8ff4dacf81e80f661cc0

Base64:

6YmJ