Unicode Finder

"齩" U+9F69(CJK UNIFIED IDEOGRAPH-9F69)

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

Programming

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

Web

CSS
\009F69
HtmlDecimal
齩
HtmlHexadecimal
齩
Url
%E9%BD%A9

Code

MD5
1f56722bdb8ef199b5c1209ef1feabab
Sha1
abbe31a0c326b3371528cfafd051292c497e62a5
Base64
6b2p

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F69';
console.log(char);  // Output: 齩

Java:

char c = '\u9F69';
System.out.println(c);  // Output: 齩

JSON:

{"text": "\u9F69"}  // Value: 齩

Python:

char = '\u9F69'
print(char)  # Output: 齩

Perl:

my $char = "\x{9F69}";
print $char;  # Output: 齩

PHP:

$char = "\x{9F69}";
echo $char;  // Output: 齩

Ruby:

char = "\u{9F69}"
puts char  # Output: 齩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40809;</p>  <!-- Display: 齩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F69;</p>  <!-- Display: 齩 -->

URL Encoding:

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

Encodings

MD5:

1f56722bdb8ef199b5c1209ef1feabab

SHA1:

abbe31a0c326b3371528cfafd051292c497e62a5

Base64:

6b2p