Unicode Finder

"鐯" U+942F(CJK UNIFIED IDEOGRAPH-942F)

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

Programming

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

Web

CSS
\00942F
HtmlDecimal
鐯
HtmlHexadecimal
鐯
Url
%E9%90%AF

Code

MD5
2d31c469e4afc5345bf3eaa70c0f2206
Sha1
769278f0e24e277cb859e1d20efec900d828cc93
Base64
6ZCv

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u942F';
console.log(char);  // Output: 鐯

Java:

char c = '\u942F';
System.out.println(c);  // Output: 鐯

JSON:

{"text": "\u942F"}  // Value: 鐯

Python:

char = '\u942F'
print(char)  # Output: 鐯

Perl:

my $char = "\x{942F}";
print $char;  # Output: 鐯

PHP:

$char = "\x{942F}";
echo $char;  // Output: 鐯

Ruby:

char = "\u{942F}"
puts char  # Output: 鐯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37935;</p>  <!-- Display: 鐯 -->

HTML Hexadecimal:

<p>HTML hex: &#x942F;</p>  <!-- Display: 鐯 -->

URL Encoding:

// 鐯 URL encoding
https://unicodefinder.com/search.php?query=%E9%90%AF

Encodings

MD5:

2d31c469e4afc5345bf3eaa70c0f2206

SHA1:

769278f0e24e277cb859e1d20efec900d828cc93

Base64:

6ZCv