Unicode Finder

"廻" U+5EFB(CJK UNIFIED IDEOGRAPH-5EFB)

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

Programming

C
\u5EFB
JavaScript
\u5EFB
Java
\u5EFB
Json
\u5EFB
Python
\u5EFB
Perl
\x{5EFB}
PHP
\x{5EFB}
Ruby
\u{5EFB}
Rust
\u{5EFB}
Go
\u5EFB

Web

CSS
\005EFB
HtmlDecimal
廻
HtmlHexadecimal
廻
Url
%E5%BB%BB

Code

MD5
c5836e0964d14917bc0f208886fa7df0
Sha1
4d03b9a0f1b493f191b65a2b1cb9b0fc8af995b1
Base64
5bu7

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5EFB';
console.log(char);  // Output: 廻

Java:

char c = '\u5EFB';
System.out.println(c);  // Output: 廻

JSON:

{"text": "\u5EFB"}  // Value: 廻

Python:

char = '\u5EFB'
print(char)  # Output: 廻

Perl:

my $char = "\x{5EFB}";
print $char;  # Output: 廻

PHP:

$char = "\x{5EFB}";
echo $char;  // Output: 廻

Ruby:

char = "\u{5EFB}"
puts char  # Output: 廻

Rust:

let c = '\u{5EFB}';
println!("{}", c);  // Output: 廻

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005EFB";  /* Display: 廻 */
}

HTML Decimal:

<p>HTML decimal: &#24315;</p>  <!-- Display: 廻 -->

HTML Hexadecimal:

<p>HTML hex: &#x5EFB;</p>  <!-- Display: 廻 -->

URL Encoding:

// 廻 URL encoding
https://unicodefinder.com/search.php?query=%E5%BB%BB

Encodings

MD5:

c5836e0964d14917bc0f208886fa7df0

SHA1:

4d03b9a0f1b493f191b65a2b1cb9b0fc8af995b1

Base64:

5bu7