Unicode Finder

"龙" U+9F99(CJK UNIFIED IDEOGRAPH-9F99)

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

Programming

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

Web

CSS
\009F99
HtmlDecimal
龙
HtmlHexadecimal
龙
Url
%E9%BE%99

Code

MD5
682570a229cbd3d67e76ad99b3152060
Sha1
075e4194fa8f2a317026ec6a0f614f295a4b45a5
Base64
6b6Z

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F99';
console.log(char);  // Output: 龙

Java:

char c = '\u9F99';
System.out.println(c);  // Output: 龙

JSON:

{"text": "\u9F99"}  // Value: 龙

Python:

char = '\u9F99'
print(char)  # Output: 龙

Perl:

my $char = "\x{9F99}";
print $char;  # Output: 龙

PHP:

$char = "\x{9F99}";
echo $char;  // Output: 龙

Ruby:

char = "\u{9F99}"
puts char  # Output: 龙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40857;</p>  <!-- Display: 龙 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F99;</p>  <!-- Display: 龙 -->

URL Encoding:

// 龙 URL encoding
https://unicodefinder.com/search.php?query=%E9%BE%99

Encodings

MD5:

682570a229cbd3d67e76ad99b3152060

SHA1:

075e4194fa8f2a317026ec6a0f614f295a4b45a5

Base64:

6b6Z