Unicode Finder

"齂" U+9F42(CJK UNIFIED IDEOGRAPH-9F42)

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

Programming

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

Web

CSS
\009F42
HtmlDecimal
齂
HtmlHexadecimal
齂
Url
%E9%BD%82

Code

MD5
31263f9511ee741320c9d2815f706615
Sha1
ab8d69bc3c61bc5623087c695ee8f1176b11de42
Base64
6b2C

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F42';
console.log(char);  // Output: 齂

Java:

char c = '\u9F42';
System.out.println(c);  // Output: 齂

JSON:

{"text": "\u9F42"}  // Value: 齂

Python:

char = '\u9F42'
print(char)  # Output: 齂

Perl:

my $char = "\x{9F42}";
print $char;  # Output: 齂

PHP:

$char = "\x{9F42}";
echo $char;  // Output: 齂

Ruby:

char = "\u{9F42}"
puts char  # Output: 齂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40770;</p>  <!-- Display: 齂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F42;</p>  <!-- Display: 齂 -->

URL Encoding:

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

Encodings

MD5:

31263f9511ee741320c9d2815f706615

SHA1:

ab8d69bc3c61bc5623087c695ee8f1176b11de42

Base64:

6b2C