Unicode Finder

"天" U+5929(CJK UNIFIED IDEOGRAPH-5929)

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

Programming

C
\u5929
JavaScript
\u5929
Java
\u5929
Json
\u5929
Python
\u5929
Perl
\x{5929}
PHP
\x{5929}
Ruby
\u{5929}
Rust
\u{5929}
Go
\u5929

Web

CSS
\005929
HtmlDecimal
天
HtmlHexadecimal
天
Url
%E5%A4%A9

Code

MD5
249aba763258bbe488af3e79a381d265
Sha1
c3304d1e49e3eaa7072ba35285041ebb452a0c0d
Base64
5aSp

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5929';
console.log(char);  // Output: 天

Java:

char c = '\u5929';
System.out.println(c);  // Output: 天

JSON:

{"text": "\u5929"}  // Value: 天

Python:

char = '\u5929'
print(char)  # Output: 天

Perl:

my $char = "\x{5929}";
print $char;  # Output: 天

PHP:

$char = "\x{5929}";
echo $char;  // Output: 天

Ruby:

char = "\u{5929}"
puts char  # Output: 天

Rust:

let c = '\u{5929}';
println!("{}", c);  // Output: 天

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005929";  /* Display: 天 */
}

HTML Decimal:

<p>HTML decimal: &#22825;</p>  <!-- Display: 天 -->

HTML Hexadecimal:

<p>HTML hex: &#x5929;</p>  <!-- Display: 天 -->

URL Encoding:

// 天 URL encoding
https://unicodefinder.com/search.php?query=%E5%A4%A9

Encodings

MD5:

249aba763258bbe488af3e79a381d265

SHA1:

c3304d1e49e3eaa7072ba35285041ebb452a0c0d

Base64:

5aSp