Unicode Finder

"鮕" U+9B95(CJK UNIFIED IDEOGRAPH-9B95)

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

Programming

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

Web

CSS
\009B95
HtmlDecimal
鮕
HtmlHexadecimal
鮕
Url
%E9%AE%95

Code

MD5
7cbd105bf867304af83afae9681cfc99
Sha1
a65787f48449eff6852192e7be566bbb4714f509
Base64
6a6V

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9B95';
console.log(char);  // Output: 鮕

Java:

char c = '\u9B95';
System.out.println(c);  // Output: 鮕

JSON:

{"text": "\u9B95"}  // Value: 鮕

Python:

char = '\u9B95'
print(char)  # Output: 鮕

Perl:

my $char = "\x{9B95}";
print $char;  # Output: 鮕

PHP:

$char = "\x{9B95}";
echo $char;  // Output: 鮕

Ruby:

char = "\u{9B95}"
puts char  # Output: 鮕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39829;</p>  <!-- Display: 鮕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B95;</p>  <!-- Display: 鮕 -->

URL Encoding:

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

Encodings

MD5:

7cbd105bf867304af83afae9681cfc99

SHA1:

a65787f48449eff6852192e7be566bbb4714f509

Base64:

6a6V