Unicode Finder

"铤" U+94E4(CJK UNIFIED IDEOGRAPH-94E4)

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

Programming

C
\u94E4
JavaScript
\u94E4
Java
\u94E4
Json
\u94E4
Python
\u94E4
Perl
\x{94E4}
PHP
\x{94E4}
Ruby
\u{94E4}
Rust
\u{94E4}
Go
\u94E4

Web

CSS
\0094E4
HtmlDecimal
铤
HtmlHexadecimal
铤
Url
%E9%93%A4

Code

MD5
00a641299abf03f3c341cd18ef83681e
Sha1
057f39fad07ffd30fc1709090ba1421fd7d8953c
Base64
6ZOk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u94E4';
console.log(char);  // Output: 铤

Java:

char c = '\u94E4';
System.out.println(c);  // Output: 铤

JSON:

{"text": "\u94E4"}  // Value: 铤

Python:

char = '\u94E4'
print(char)  # Output: 铤

Perl:

my $char = "\x{94E4}";
print $char;  # Output: 铤

PHP:

$char = "\x{94E4}";
echo $char;  // Output: 铤

Ruby:

char = "\u{94E4}"
puts char  # Output: 铤

Rust:

let c = '\u{94E4}';
println!("{}", c);  // Output: 铤

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0094E4";  /* Display: 铤 */
}

HTML Decimal:

<p>HTML decimal: &#38116;</p>  <!-- Display: 铤 -->

HTML Hexadecimal:

<p>HTML hex: &#x94E4;</p>  <!-- Display: 铤 -->

URL Encoding:

// 铤 URL encoding
https://unicodefinder.com/search.php?query=%E9%93%A4

Encodings

MD5:

00a641299abf03f3c341cd18ef83681e

SHA1:

057f39fad07ffd30fc1709090ba1421fd7d8953c

Base64:

6ZOk