Unicode Finder

"饙" U+9959(CJK UNIFIED IDEOGRAPH-9959)

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

Programming

C
\u9959
JavaScript
\u9959
Java
\u9959
Json
\u9959
Python
\u9959
Perl
\x{9959}
PHP
\x{9959}
Ruby
\u{9959}
Rust
\u{9959}
Go
\u9959

Web

CSS
\009959
HtmlDecimal
饙
HtmlHexadecimal
饙
Url
%E9%A5%99

Code

MD5
732a682bf856559119056d1515244a16
Sha1
d199367eea2cc8661c8811cfcb63740e10facd09
Base64
6aWZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9959';
console.log(char);  // Output: 饙

Java:

char c = '\u9959';
System.out.println(c);  // Output: 饙

JSON:

{"text": "\u9959"}  // Value: 饙

Python:

char = '\u9959'
print(char)  # Output: 饙

Perl:

my $char = "\x{9959}";
print $char;  # Output: 饙

PHP:

$char = "\x{9959}";
echo $char;  // Output: 饙

Ruby:

char = "\u{9959}"
puts char  # Output: 饙

Rust:

let c = '\u{9959}';
println!("{}", c);  // Output: 饙

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009959";  /* Display: 饙 */
}

HTML Decimal:

<p>HTML decimal: &#39257;</p>  <!-- Display: 饙 -->

HTML Hexadecimal:

<p>HTML hex: &#x9959;</p>  <!-- Display: 饙 -->

URL Encoding:

// 饙 URL encoding
https://unicodefinder.com/search.php?query=%E9%A5%99

Encodings

MD5:

732a682bf856559119056d1515244a16

SHA1:

d199367eea2cc8661c8811cfcb63740e10facd09

Base64:

6aWZ