Unicode Finder

"倫" U+502B(CJK UNIFIED IDEOGRAPH-502B)

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

Programming

C
\u502B
JavaScript
\u502B
Java
\u502B
Json
\u502B
Python
\u502B
Perl
\x{502B}
PHP
\x{502B}
Ruby
\u{502B}
Rust
\u{502B}
Go
\u502B

Web

CSS
\00502B
HtmlDecimal
倫
HtmlHexadecimal
倫
Url
%E5%80%AB

Code

MD5
db78eb54b1ce7a1c3b2fdaac2cd70544
Sha1
2fd800aa7f6aabbe001fe04fbd3e94c788bb5195
Base64
5YCr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u502B';
console.log(char);  // Output: 倫

Java:

char c = '\u502B';
System.out.println(c);  // Output: 倫

JSON:

{"text": "\u502B"}  // Value: 倫

Python:

char = '\u502B'
print(char)  # Output: 倫

Perl:

my $char = "\x{502B}";
print $char;  # Output: 倫

PHP:

$char = "\x{502B}";
echo $char;  // Output: 倫

Ruby:

char = "\u{502B}"
puts char  # Output: 倫

Rust:

let c = '\u{502B}';
println!("{}", c);  // Output: 倫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00502B";  /* Display: 倫 */
}

HTML Decimal:

<p>HTML decimal: &#20523;</p>  <!-- Display: 倫 -->

HTML Hexadecimal:

<p>HTML hex: &#x502B;</p>  <!-- Display: 倫 -->

URL Encoding:

// 倫 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%AB

Encodings

MD5:

db78eb54b1ce7a1c3b2fdaac2cd70544

SHA1:

2fd800aa7f6aabbe001fe04fbd3e94c788bb5195

Base64:

5YCr