Unicode Finder

"兔" U+5154(CJK UNIFIED IDEOGRAPH-5154)

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

Programming

C
\u5154
JavaScript
\u5154
Java
\u5154
Json
\u5154
Python
\u5154
Perl
\x{5154}
PHP
\x{5154}
Ruby
\u{5154}
Rust
\u{5154}
Go
\u5154

Web

CSS
\005154
HtmlDecimal
兔
HtmlHexadecimal
兔
Url
%E5%85%94

Code

MD5
ff5e0a155e87dadbb671c1bdd1c837ee
Sha1
c650d5c2c57d33dd02bce70fd27852308aba62c9
Base64
5YWU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5154';
console.log(char);  // Output: 兔

Java:

char c = '\u5154';
System.out.println(c);  // Output: 兔

JSON:

{"text": "\u5154"}  // Value: 兔

Python:

char = '\u5154'
print(char)  # Output: 兔

Perl:

my $char = "\x{5154}";
print $char;  # Output: 兔

PHP:

$char = "\x{5154}";
echo $char;  // Output: 兔

Ruby:

char = "\u{5154}"
puts char  # Output: 兔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005154";  /* Display: 兔 */
}

HTML Decimal:

<p>HTML decimal: &#20820;</p>  <!-- Display: 兔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5154;</p>  <!-- Display: 兔 -->

URL Encoding:

// 兔 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%94

Encodings

MD5:

ff5e0a155e87dadbb671c1bdd1c837ee

SHA1:

c650d5c2c57d33dd02bce70fd27852308aba62c9

Base64:

5YWU