Unicode Finder

"齈" U+9F48(CJK UNIFIED IDEOGRAPH-9F48)

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

Programming

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

Web

CSS
\009F48
HtmlDecimal
齈
HtmlHexadecimal
齈
Url
%E9%BD%88

Code

MD5
302664f8fc2410c64db3c318df0195c9
Sha1
d7dbb283fabb5bf1781450f0cca5f61e4707cf5b
Base64
6b2I

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F48';
console.log(char);  // Output: 齈

Java:

char c = '\u9F48';
System.out.println(c);  // Output: 齈

JSON:

{"text": "\u9F48"}  // Value: 齈

Python:

char = '\u9F48'
print(char)  # Output: 齈

Perl:

my $char = "\x{9F48}";
print $char;  # Output: 齈

PHP:

$char = "\x{9F48}";
echo $char;  // Output: 齈

Ruby:

char = "\u{9F48}"
puts char  # Output: 齈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40776;</p>  <!-- Display: 齈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F48;</p>  <!-- Display: 齈 -->

URL Encoding:

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

Encodings

MD5:

302664f8fc2410c64db3c318df0195c9

SHA1:

d7dbb283fabb5bf1781450f0cca5f61e4707cf5b

Base64:

6b2I