Unicode Finder

"饫" U+996B(CJK UNIFIED IDEOGRAPH-996B)

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

Programming

C
\u996B
JavaScript
\u996B
Java
\u996B
Json
\u996B
Python
\u996B
Perl
\x{996B}
PHP
\x{996B}
Ruby
\u{996B}
Rust
\u{996B}
Go
\u996B

Web

CSS
\00996B
HtmlDecimal
饫
HtmlHexadecimal
饫
Url
%E9%A5%AB

Code

MD5
fab282bc29423eae68f9470916e5671b
Sha1
7ce83ea493bf9b10a5200e64ee33990183557cb2
Base64
6aWr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u996B';
console.log(char);  // Output: 饫

Java:

char c = '\u996B';
System.out.println(c);  // Output: 饫

JSON:

{"text": "\u996B"}  // Value: 饫

Python:

char = '\u996B'
print(char)  # Output: 饫

Perl:

my $char = "\x{996B}";
print $char;  # Output: 饫

PHP:

$char = "\x{996B}";
echo $char;  // Output: 饫

Ruby:

char = "\u{996B}"
puts char  # Output: 饫

Rust:

let c = '\u{996B}';
println!("{}", c);  // Output: 饫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00996B";  /* Display: 饫 */
}

HTML Decimal:

<p>HTML decimal: &#39275;</p>  <!-- Display: 饫 -->

HTML Hexadecimal:

<p>HTML hex: &#x996B;</p>  <!-- Display: 饫 -->

URL Encoding:

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

Encodings

MD5:

fab282bc29423eae68f9470916e5671b

SHA1:

7ce83ea493bf9b10a5200e64ee33990183557cb2

Base64:

6aWr