Unicode Finder

"频" U+9891(CJK UNIFIED IDEOGRAPH-9891)

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

Programming

C
\u9891
JavaScript
\u9891
Java
\u9891
Json
\u9891
Python
\u9891
Perl
\x{9891}
PHP
\x{9891}
Ruby
\u{9891}
Rust
\u{9891}
Go
\u9891

Web

CSS
\009891
HtmlDecimal
频
HtmlHexadecimal
频
Url
%E9%A2%91

Code

MD5
b4050f71aadecade778fcc91660b86ed
Sha1
f55f362c8aa8835810b829f1c03f4cc61caa65b9
Base64
6aKR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9891';
console.log(char);  // Output: 频

Java:

char c = '\u9891';
System.out.println(c);  // Output: 频

JSON:

{"text": "\u9891"}  // Value: 频

Python:

char = '\u9891'
print(char)  # Output: 频

Perl:

my $char = "\x{9891}";
print $char;  # Output: 频

PHP:

$char = "\x{9891}";
echo $char;  // Output: 频

Ruby:

char = "\u{9891}"
puts char  # Output: 频

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009891";  /* Display: 频 */
}

HTML Decimal:

<p>HTML decimal: &#39057;</p>  <!-- Display: 频 -->

HTML Hexadecimal:

<p>HTML hex: &#x9891;</p>  <!-- Display: 频 -->

URL Encoding:

// 频 URL encoding
https://unicodefinder.com/search.php?query=%E9%A2%91

Encodings

MD5:

b4050f71aadecade778fcc91660b86ed

SHA1:

f55f362c8aa8835810b829f1c03f4cc61caa65b9

Base64:

6aKR