Unicode Finder

"鯴" U+9BF4(CJK UNIFIED IDEOGRAPH-9BF4)

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

Programming

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

Web

CSS
\009BF4
HtmlDecimal
鯴
HtmlHexadecimal
鯴
Url
%E9%AF%B4

Code

MD5
ede6bb6d6788bc4f7d1617d3e50c6ed0
Sha1
be1a64d689a425c308f214a77a32c6ddaae9ba75
Base64
6a+0

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9BF4';
console.log(char);  // Output: 鯴

Java:

char c = '\u9BF4';
System.out.println(c);  // Output: 鯴

JSON:

{"text": "\u9BF4"}  // Value: 鯴

Python:

char = '\u9BF4'
print(char)  # Output: 鯴

Perl:

my $char = "\x{9BF4}";
print $char;  # Output: 鯴

PHP:

$char = "\x{9BF4}";
echo $char;  // Output: 鯴

Ruby:

char = "\u{9BF4}"
puts char  # Output: 鯴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39924;</p>  <!-- Display: 鯴 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BF4;</p>  <!-- Display: 鯴 -->

URL Encoding:

// 鯴 URL encoding
https://unicodefinder.com/search.php?query=%E9%AF%B4

Encodings

MD5:

ede6bb6d6788bc4f7d1617d3e50c6ed0

SHA1:

be1a64d689a425c308f214a77a32c6ddaae9ba75

Base64:

6a+0