Unicode Finder

"鑏" U+944F(CJK UNIFIED IDEOGRAPH-944F)

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

Programming

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

Web

CSS
\00944F
HtmlDecimal
鑏
HtmlHexadecimal
鑏
Url
%E9%91%8F

Code

MD5
b50d49bd0b8f51f955d5897613f6c8e4
Sha1
4db8249c1e185ef51333486a06d59335da7ecc6e
Base64
6ZGP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u944F';
console.log(char);  // Output: 鑏

Java:

char c = '\u944F';
System.out.println(c);  // Output: 鑏

JSON:

{"text": "\u944F"}  // Value: 鑏

Python:

char = '\u944F'
print(char)  # Output: 鑏

Perl:

my $char = "\x{944F}";
print $char;  # Output: 鑏

PHP:

$char = "\x{944F}";
echo $char;  // Output: 鑏

Ruby:

char = "\u{944F}"
puts char  # Output: 鑏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37967;</p>  <!-- Display: 鑏 -->

HTML Hexadecimal:

<p>HTML hex: &#x944F;</p>  <!-- Display: 鑏 -->

URL Encoding:

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

Encodings

MD5:

b50d49bd0b8f51f955d5897613f6c8e4

SHA1:

4db8249c1e185ef51333486a06d59335da7ecc6e

Base64:

6ZGP