Unicode Finder

"鼕" U+9F15(CJK UNIFIED IDEOGRAPH-9F15)

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

Programming

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

Web

CSS
\009F15
HtmlDecimal
鼕
HtmlHexadecimal
鼕
Url
%E9%BC%95

Code

MD5
3d8cb1f054ea2c7015be6f59b1eb482d
Sha1
db63f22e27196ef43a7becaf8fbd6f02393767b0
Base64
6byV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F15';
console.log(char);  // Output: 鼕

Java:

char c = '\u9F15';
System.out.println(c);  // Output: 鼕

JSON:

{"text": "\u9F15"}  // Value: 鼕

Python:

char = '\u9F15'
print(char)  # Output: 鼕

Perl:

my $char = "\x{9F15}";
print $char;  # Output: 鼕

PHP:

$char = "\x{9F15}";
echo $char;  // Output: 鼕

Ruby:

char = "\u{9F15}"
puts char  # Output: 鼕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40725;</p>  <!-- Display: 鼕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F15;</p>  <!-- Display: 鼕 -->

URL Encoding:

// 鼕 URL encoding
https://unicodefinder.com/search.php?query=%E9%BC%95

Encodings

MD5:

3d8cb1f054ea2c7015be6f59b1eb482d

SHA1:

db63f22e27196ef43a7becaf8fbd6f02393767b0

Base64:

6byV