Unicode Finder

"齉" U+9F49(CJK UNIFIED IDEOGRAPH-9F49)

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

Programming

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

Web

CSS
\009F49
HtmlDecimal
齉
HtmlHexadecimal
齉
Url
%E9%BD%89

Code

MD5
839ea0217e47aca7435ed6fc884a5d85
Sha1
051b759497f444d43698b7e41741b938bd4e3186
Base64
6b2J

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F49';
console.log(char);  // Output: 齉

Java:

char c = '\u9F49';
System.out.println(c);  // Output: 齉

JSON:

{"text": "\u9F49"}  // Value: 齉

Python:

char = '\u9F49'
print(char)  # Output: 齉

Perl:

my $char = "\x{9F49}";
print $char;  # Output: 齉

PHP:

$char = "\x{9F49}";
echo $char;  // Output: 齉

Ruby:

char = "\u{9F49}"
puts char  # Output: 齉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40777;</p>  <!-- Display: 齉 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F49;</p>  <!-- Display: 齉 -->

URL Encoding:

// 齉 URL encoding
https://unicodefinder.com/search.php?query=%E9%BD%89

Encodings

MD5:

839ea0217e47aca7435ed6fc884a5d85

SHA1:

051b759497f444d43698b7e41741b938bd4e3186

Base64:

6b2J