Unicode Finder

"鸔" U+9E14(CJK UNIFIED IDEOGRAPH-9E14)

U+9E14
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9E14

Programming

C
\u9E14
JavaScript
\u9E14
Java
\u9E14
Json
\u9E14
Python
\u9E14
Perl
\x{9E14}
PHP
\x{9E14}
Ruby
\u{9E14}
Rust
\u{9E14}
Go
\u9E14

Web

CSS
\009E14
HtmlDecimal
鸔
HtmlHexadecimal
鸔
Url
%E9%B8%94

Code

MD5
dcfe2c530787239fb28db9cfcf1b1c52
Sha1
ac634e35f89218de480824c05245e9b528d5c315
Base64
6biU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9E14';
console.log(char);  // Output: 鸔

Java:

char c = '\u9E14';
System.out.println(c);  // Output: 鸔

JSON:

{"text": "\u9E14"}  // Value: 鸔

Python:

char = '\u9E14'
print(char)  # Output: 鸔

Perl:

my $char = "\x{9E14}";
print $char;  # Output: 鸔

PHP:

$char = "\x{9E14}";
echo $char;  // Output: 鸔

Ruby:

char = "\u{9E14}"
puts char  # Output: 鸔

Rust:

let c = '\u{9E14}';
println!("{}", c);  // Output: 鸔

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009E14";  /* Display: 鸔 */
}

HTML Decimal:

<p>HTML decimal: &#40468;</p>  <!-- Display: 鸔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9E14;</p>  <!-- Display: 鸔 -->

URL Encoding:

// 鸔 URL encoding
https://unicodefinder.com/search.php?query=%E9%B8%94

Encodings

MD5:

dcfe2c530787239fb28db9cfcf1b1c52

SHA1:

ac634e35f89218de480824c05245e9b528d5c315

Base64:

6biU