Unicode Finder

"榫" U+69AB(CJK UNIFIED IDEOGRAPH-69AB)

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

Programming

C
\u69AB
JavaScript
\u69AB
Java
\u69AB
Json
\u69AB
Python
\u69AB
Perl
\x{69AB}
PHP
\x{69AB}
Ruby
\u{69AB}
Rust
\u{69AB}
Go
\u69AB

Web

CSS
\0069AB
HtmlDecimal
榫
HtmlHexadecimal
榫
Url
%E6%A6%AB

Code

MD5
f3bbf31518cb279c669cc46d5c538f74
Sha1
0b09abda7903804c02f86af1d983546281c10ad9
Base64
5qar

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u69AB';
console.log(char);  // Output: 榫

Java:

char c = '\u69AB';
System.out.println(c);  // Output: 榫

JSON:

{"text": "\u69AB"}  // Value: 榫

Python:

char = '\u69AB'
print(char)  # Output: 榫

Perl:

my $char = "\x{69AB}";
print $char;  # Output: 榫

PHP:

$char = "\x{69AB}";
echo $char;  // Output: 榫

Ruby:

char = "\u{69AB}"
puts char  # Output: 榫

Rust:

let c = '\u{69AB}';
println!("{}", c);  // Output: 榫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0069AB";  /* Display: 榫 */
}

HTML Decimal:

<p>HTML decimal: &#27051;</p>  <!-- Display: 榫 -->

HTML Hexadecimal:

<p>HTML hex: &#x69AB;</p>  <!-- Display: 榫 -->

URL Encoding:

// 榫 URL encoding
https://unicodefinder.com/search.php?query=%E6%A6%AB

Encodings

MD5:

f3bbf31518cb279c669cc46d5c538f74

SHA1:

0b09abda7903804c02f86af1d983546281c10ad9

Base64:

5qar