Unicode Finder

"齘" U+9F58(CJK UNIFIED IDEOGRAPH-9F58)

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

Programming

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

Web

CSS
\009F58
HtmlDecimal
齘
HtmlHexadecimal
齘
Url
%E9%BD%98

Code

MD5
b35bc573fc57497d2e8766326638e972
Sha1
3990a7f0a607ac2ccca861c3e1ba73a16307b311
Base64
6b2Y

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F58';
console.log(char);  // Output: 齘

Java:

char c = '\u9F58';
System.out.println(c);  // Output: 齘

JSON:

{"text": "\u9F58"}  // Value: 齘

Python:

char = '\u9F58'
print(char)  # Output: 齘

Perl:

my $char = "\x{9F58}";
print $char;  # Output: 齘

PHP:

$char = "\x{9F58}";
echo $char;  // Output: 齘

Ruby:

char = "\u{9F58}"
puts char  # Output: 齘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40792;</p>  <!-- Display: 齘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F58;</p>  <!-- Display: 齘 -->

URL Encoding:

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

Encodings

MD5:

b35bc573fc57497d2e8766326638e972

SHA1:

3990a7f0a607ac2ccca861c3e1ba73a16307b311

Base64:

6b2Y