Unicode Finder

"齔" U+9F54(CJK UNIFIED IDEOGRAPH-9F54)

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

Programming

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

Web

CSS
\009F54
HtmlDecimal
齔
HtmlHexadecimal
齔
Url
%E9%BD%94

Code

MD5
8cfe36ee1a702f78ec506bb92c8a0684
Sha1
741291ccc8e919391aa1a9e16c9d3a1881ebb8f3
Base64
6b2U

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F54';
console.log(char);  // Output: 齔

Java:

char c = '\u9F54';
System.out.println(c);  // Output: 齔

JSON:

{"text": "\u9F54"}  // Value: 齔

Python:

char = '\u9F54'
print(char)  # Output: 齔

Perl:

my $char = "\x{9F54}";
print $char;  # Output: 齔

PHP:

$char = "\x{9F54}";
echo $char;  // Output: 齔

Ruby:

char = "\u{9F54}"
puts char  # Output: 齔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40788;</p>  <!-- Display: 齔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F54;</p>  <!-- Display: 齔 -->

URL Encoding:

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

Encodings

MD5:

8cfe36ee1a702f78ec506bb92c8a0684

SHA1:

741291ccc8e919391aa1a9e16c9d3a1881ebb8f3

Base64:

6b2U