Unicode Finder

"齓" U+9F53(CJK UNIFIED IDEOGRAPH-9F53)

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

Programming

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

Web

CSS
\009F53
HtmlDecimal
齓
HtmlHexadecimal
齓
Url
%E9%BD%93

Code

MD5
0bf921edecc514a23045ea1002c8c74f
Sha1
dca0642b02105c9be14b020076c65f8df9fd2373
Base64
6b2T

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F53';
console.log(char);  // Output: 齓

Java:

char c = '\u9F53';
System.out.println(c);  // Output: 齓

JSON:

{"text": "\u9F53"}  // Value: 齓

Python:

char = '\u9F53'
print(char)  # Output: 齓

Perl:

my $char = "\x{9F53}";
print $char;  # Output: 齓

PHP:

$char = "\x{9F53}";
echo $char;  // Output: 齓

Ruby:

char = "\u{9F53}"
puts char  # Output: 齓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40787;</p>  <!-- Display: 齓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F53;</p>  <!-- Display: 齓 -->

URL Encoding:

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

Encodings

MD5:

0bf921edecc514a23045ea1002c8c74f

SHA1:

dca0642b02105c9be14b020076c65f8df9fd2373

Base64:

6b2T