Unicode Finder

"齠" U+9F60(CJK UNIFIED IDEOGRAPH-9F60)

U+9F60
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9F60

Programming

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

Web

CSS
\009F60
HtmlDecimal
齠
HtmlHexadecimal
齠
Url
%E9%BD%A0

Code

MD5
d287410dd837ad7caec5c60193ebb073
Sha1
f3b290e92d63f77e3b08cf90cfbd455935a0e694
Base64
6b2g

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9F60';
console.log(char);  // Output: 齠

Java:

char c = '\u9F60';
System.out.println(c);  // Output: 齠

JSON:

{"text": "\u9F60"}  // Value: 齠

Python:

char = '\u9F60'
print(char)  # Output: 齠

Perl:

my $char = "\x{9F60}";
print $char;  # Output: 齠

PHP:

$char = "\x{9F60}";
echo $char;  // Output: 齠

Ruby:

char = "\u{9F60}"
puts char  # Output: 齠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40800;</p>  <!-- Display: 齠 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F60;</p>  <!-- Display: 齠 -->

URL Encoding:

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

Encodings

MD5:

d287410dd837ad7caec5c60193ebb073

SHA1:

f3b290e92d63f77e3b08cf90cfbd455935a0e694

Base64:

6b2g