Unicode Finder

"鍏" U+934F(CJK UNIFIED IDEOGRAPH-934F)

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

Programming

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

Web

CSS
\00934F
HtmlDecimal
鍏
HtmlHexadecimal
鍏
Url
%E9%8D%8F

Code

MD5
e8b88dc171064fcd0a231c58160c1efa
Sha1
ab8f0ff16120ebe0a606c95acff07e2ea3632fe1
Base64
6Y2P

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u934F';
console.log(char);  // Output: 鍏

Java:

char c = '\u934F';
System.out.println(c);  // Output: 鍏

JSON:

{"text": "\u934F"}  // Value: 鍏

Python:

char = '\u934F'
print(char)  # Output: 鍏

Perl:

my $char = "\x{934F}";
print $char;  # Output: 鍏

PHP:

$char = "\x{934F}";
echo $char;  // Output: 鍏

Ruby:

char = "\u{934F}"
puts char  # Output: 鍏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37711;</p>  <!-- Display: 鍏 -->

HTML Hexadecimal:

<p>HTML hex: &#x934F;</p>  <!-- Display: 鍏 -->

URL Encoding:

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

Encodings

MD5:

e8b88dc171064fcd0a231c58160c1efa

SHA1:

ab8f0ff16120ebe0a606c95acff07e2ea3632fe1

Base64:

6Y2P